@charset "UTF-8";
@font-face {
  font-family: "Audiowide";
  src: url("../fonts/Audiowide-Regular.woff2?v=1") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Thin.woff2?v=1") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-ExtraLight.woff2?v=1") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Light.woff2?v=1") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Regular.woff2?v=1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Medium.woff2?v=1") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-SemiBold.woff2?v=1") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Bold.woff2?v=1") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-ExtraBold.woff2?v=1") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
#home, #projects, #about, #contact {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

#home {
  z-index: 1;
}

#projects {
  z-index: 2;
}

#about {
  z-index: 3;
}

#contact {
  z-index: 4;
}

#home {
  width: 100dvw;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 0 50px;
  height: auto;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-image: url("../../img/home-bg.svg?v=1");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  gap: 2rem;
  text-align: center;
}
#home::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 62, 0.5) 0%, rgba(11, 15, 62, 0) 20%);
  pointer-events: none;
  z-index: 0;
}
#home h1 {
  font-weight: 600;
  font-size: 5rem;
}
#home #homeTitle p{
    font-size: 24px;
}
#home a {
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  background: #7B5FFF;
  border-radius: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#home a .homeLinkPc {
  opacity: 1;
  position: relative;
}
#home a .homeLinkMobile {
  display: none;
}
#home a:hover {
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(2px);
}

#projects {
  width: 100dvw;
  height: fit-content;
  scroll-margin-top: 125px;
  background-color: #232A60;
  position: relative;
  padding: 125px 50px;
  display: grid;
  column-gap: 25px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: row dense;
}
#projects::before {
  pointer-events: none;
  content: "";
  z-index: 2;
  display: flex;
  width: 100%;
  height: 250px;
  background-image: url("../../img/home-projects-transition.svg?v=1");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-25%);
}
#projects .project {
  z-index: 3;
  position: relative;
  overflow: visible;
  width: 100%;
  aspect-ratio: 300/142;
  container-type: size;
  cursor: pointer;
}
#projects .project svg.imgProject {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#projects .project svg.imgProject .webp {
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
  transform: translateY(0);
  pointer-events: auto;
}
#projects .project svg.imgProject .webp:hover {
  transform: translateY(-15px);
}
#projects .project > * {
  position: relative;
  z-index: 1;
}
#projects .project.project-1 {
  grid-column: 1;
  grid-row: 1;
  z-index: 23;
}
#projects .project.project-1 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 37.757800105% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-1 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-1 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-1 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-1 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-1 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-1 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-1::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-1.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-1.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-2 {
  grid-column: 2;
  grid-row: 1;
  z-index: 22;
}
#projects .project.project-2 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.856520115% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-2 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-2 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-2 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-2 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-2 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-2 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-2::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-2.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-2.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-3 {
  grid-column: 3;
  grid-row: 1;
  z-index: 21;
}
#projects .project.project-3 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.4552650018% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-3 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-3 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-3 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-3 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-3 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-3 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-3::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-3.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-3.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-4 {
  grid-column: 1;
  grid-row: 3;
  z-index: 20;
}
#projects .project.project-4 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-4 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-4 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-4 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-4 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-4 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-4 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-4::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-4.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-4.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-5 {
  grid-column: 2;
  grid-row: 3;
  z-index: 19;
}
#projects .project.project-5 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-5 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-5 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-5 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-5 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-5 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-5 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-5::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-5.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-5.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-6 {
  grid-column: 3;
  grid-row: 3;
  z-index: 18;
}
#projects .project.project-6 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-6 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-6 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-6 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-6 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-6 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-6 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-6::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-6.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-6.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-7 {
  grid-column: 1;
  grid-row: 1;
  z-index: 17;
}
#projects .project.project-7 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 37.757800105% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-7 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-7 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-7 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-7 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-7 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-7 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-7::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-1.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-1.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-8 {
  grid-column: 2;
  grid-row: 1;
  z-index: 16;
}
#projects .project.project-8 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.856520115% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-8 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-8 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-8 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-8 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-8 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-8 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-8::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-2.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-2.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-9 {
  grid-column: 3;
  grid-row: 1;
  z-index: 15;
}
#projects .project.project-9 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.4552650018% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-9 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-9 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-9 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-9 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-9 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-9 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-9::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-3.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-3.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-10 {
  grid-column: 1;
  grid-row: 3;
  z-index: 14;
}
#projects .project.project-10 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-10 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-10 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-10 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-10 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-10 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-10 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-10::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-4.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-4.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-11 {
  grid-column: 2;
  grid-row: 3;
  z-index: 13;
}
#projects .project.project-11 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-11 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-11 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-11 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-11 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-11 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-11 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-11::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-5.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-5.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-12 {
  grid-column: 3;
  grid-row: 3;
  z-index: 12;
}
#projects .project.project-12 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-12 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-12 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-12 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-12 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-12 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-12 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-12::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-6.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-6.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-13 {
  grid-column: 1;
  grid-row: 1;
  z-index: 11;
}
#projects .project.project-13 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 37.757800105% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-13 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-13 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-13 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-13 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-13 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-13 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-13::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-1.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-1.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-14 {
  grid-column: 2;
  grid-row: 1;
  z-index: 10;
}
#projects .project.project-14 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.856520115% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-14 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-14 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-14 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-14 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-14 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-14 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-14::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-2.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-2.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-15 {
  grid-column: 3;
  grid-row: 1;
  z-index: 9;
}
#projects .project.project-15 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.4552650018% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-15 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-15 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-15 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-15 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-15 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-15 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-15::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-3.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-3.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-16 {
  grid-column: 1;
  grid-row: 3;
  z-index: 8;
}
#projects .project.project-16 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-16 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-16 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-16 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-16 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-16 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-16 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-16::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-4.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-4.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-17 {
  grid-column: 2;
  grid-row: 3;
  z-index: 7;
}
#projects .project.project-17 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-17 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-17 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-17 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-17 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-17 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-17 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-17::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-5.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-5.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-18 {
  grid-column: 3;
  grid-row: 3;
  z-index: 6;
}
#projects .project.project-18 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-18 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-18 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-18 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-18 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-18 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-18 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-18::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-6.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-6.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-19 {
  grid-column: 1;
  grid-row: 1;
  z-index: 5;
}
#projects .project.project-19 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 37.757800105% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-19 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-19 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-19 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-19 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-19 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-19 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-19::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-1.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-1.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-20 {
  grid-column: 2;
  grid-row: 1;
  z-index: 4;
}
#projects .project.project-20 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.856520115% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-20 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-20 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-20 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-20 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-20 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-20 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-20::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-2.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-2.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-21 {
  grid-column: 3;
  grid-row: 1;
  z-index: 3;
}
#projects .project.project-21 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 38.4552650018% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-21 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-21 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-21 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-21 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-21 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-21 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-21::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-3.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-3.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-22 {
  grid-column: 1;
  grid-row: 3;
  z-index: 2;
}
#projects .project.project-22 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-22 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-22 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-22 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-22 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-22 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-22 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-22::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-4.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-4.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-23 {
  grid-column: 2;
  grid-row: 3;
  z-index: 1;
}
#projects .project.project-23 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-23 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-23 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-23 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-23 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-23 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-23 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-23::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-5.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-5.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .project.project-24 {
  grid-column: 3;
  grid-row: 3;
  z-index: 0;
}
#projects .project.project-24 > .content {
  width: 100%;
  height: 100%;
  padding: 6.16957518% 6.16957518% 6.16957518% 6.16957518%;
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#projects .project.project-24 > .content h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.5rem, 5cqi, 2.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 1cqi;
}
#projects .project.project-24 > .content .desc {
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.25rem, 2.5cqi, 1.25rem);
  opacity: 0.92;
  max-width: 60ch;
  margin-inline: auto;
}
#projects .project.project-24 > .content .desc br {
  content: "";
  display: block;
  margin-bottom: 1em;
}
#projects .project.project-24 > .content .skills {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-flow: row nowrap;
  gap: 0.5cqi;
  margin-top: auto;
  justify-content: center;
}
#projects .project.project-24 > .content .skills img {
  aspect-ratio: 1;
  max-width: 8.5cqi;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#projects .project.project-24 > .content .skills img:hover {
  transform: translateY(-5px) scale(1.05);
}
#projects .project.project-24::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #130E37;
  pointer-events: none;
  z-index: 0;
  mask-image: url("../../img/projet-6.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/projet-6.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: visible;
}
#projects .project svg {
  overflow: visible;
}
#projects .floaty {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
  animation: float var(--dur, 6s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}
@keyframes float {
  0% {
    transform: translate(calc(var(--dx, 0px) * -1), calc(var(--dy, 0px) * -1)) rotate(calc(var(--rot, 0deg) * -1)) scale(calc(1 - var(--scale, 0)));
  }
  100% {
    transform: translate(var(--dx, 0px), var(--dy, 0px)) rotate(var(--rot, 0deg)) scale(calc(1 + var(--scale, 0)));
  }
}
@media (prefers-reduced-motion: reduce) {
  #projects .floaty {
    animation: none !important;
  }
}
#projects .floaty:nth-of-type(1) {
  --dx: -1px;
  --dy: -9px;
  --rot: -0.3deg;
  --scale: 0.01;
  --dur: 8s;
  --delay: 1.39s;
}
#projects .floaty:nth-of-type(2) {
  --dx: 14px;
  --dy: -13px;
  --rot: -2.5deg;
  --scale: 0.04;
  --dur: 5s;
  --delay: -0.46s;
}
#projects .floaty:nth-of-type(3) {
  --dx: 12px;
  --dy: 0px;
  --rot: 0.8deg;
  --scale: 0.01;
  --dur: 4s;
  --delay: 0.86s;
}
#projects .floaty:nth-of-type(4) {
  --dx: -8px;
  --dy: 3px;
  --rot: -2deg;
  --scale: 0.05;
  --dur: 7s;
  --delay: 0.27s;
}
#projects .floaty:nth-of-type(5) {
  --dx: 10px;
  --dy: 16px;
  --rot: 1.1deg;
  --scale: 0.04;
  --dur: 4s;
  --delay: -0.25s;
}
#projects .floaty:nth-of-type(6) {
  --dx: 12px;
  --dy: 7px;
  --rot: -0.9deg;
  --scale: 0.03;
  --dur: 7s;
  --delay: 1.19s;
}
#projects .floaty:nth-of-type(7) {
  --dx: 10px;
  --dy: -12px;
  --rot: -0.7deg;
  --scale: 0.02;
  --dur: 4s;
  --delay: -1.29s;
}
#projects .floaty:nth-of-type(8) {
  --dx: -10px;
  --dy: 10px;
  --rot: 3deg;
  --scale: 0.02;
  --dur: 7s;
  --delay: 0.77s;
}
#projects .floaty:nth-of-type(9) {
  --dx: 1px;
  --dy: 13px;
  --rot: 0.3deg;
  --scale: 0.02;
  --dur: 8s;
  --delay: 1.27s;
}
#projects .floaty:nth-of-type(10) {
  --dx: 14px;
  --dy: 13px;
  --rot: -0.6deg;
  --scale: 0.06;
  --dur: 4s;
  --delay: -1.18s;
}
#projects .floaty:nth-of-type(11) {
  --dx: 11px;
  --dy: 15px;
  --rot: -2.9deg;
  --scale: 0.06;
  --dur: 8s;
  --delay: 0.43s;
}
#projects .floaty:nth-of-type(12) {
  --dx: 4px;
  --dy: 0px;
  --rot: 0.8deg;
  --scale: 0.01;
  --dur: 8s;
  --delay: 0.64s;
}
#projects .floaty:nth-of-type(13) {
  --dx: 8px;
  --dy: 12px;
  --rot: 2.5deg;
  --scale: 0.02;
  --dur: 6s;
  --delay: 0.38s;
}
#projects .floaty:nth-of-type(14) {
  --dx: 3px;
  --dy: -11px;
  --rot: -0.3deg;
  --scale: 0.03;
  --dur: 5s;
  --delay: 0.61s;
}
#projects .floaty:nth-of-type(15) {
  --dx: 14px;
  --dy: -9px;
  --rot: -1.8deg;
  --scale: 0.06;
  --dur: 6s;
  --delay: 1.36s;
}
#projects .floaty:nth-of-type(16) {
  --dx: 5px;
  --dy: 2px;
  --rot: 2.1deg;
  --scale: 0.06;
  --dur: 4s;
  --delay: -0.67s;
}
#projects .floaty:nth-of-type(17) {
  --dx: 14px;
  --dy: -4px;
  --rot: 1deg;
  --scale: 0.06;
  --dur: 5s;
  --delay: 1.29s;
}
#projects .floaty:nth-of-type(18) {
  --dx: 5px;
  --dy: -16px;
  --rot: 0.1deg;
  --scale: 0.06;
  --dur: 7s;
  --delay: 1.39s;
}
#projects .floaty:nth-of-type(19) {
  --dx: -2px;
  --dy: 14px;
  --rot: 2.5deg;
  --scale: 0.03;
  --dur: 7s;
  --delay: 1.21s;
}
#projects .floaty:nth-of-type(20) {
  --dx: 10px;
  --dy: -15px;
  --rot: -0.8deg;
  --scale: 0.02;
  --dur: 7s;
  --delay: -0.71s;
}
#projects .floaty:nth-of-type(21) {
  --dx: 0px;
  --dy: -13px;
  --rot: -1.1deg;
  --scale: 0.03;
  --dur: 7s;
  --delay: -0.75s;
}
#projects .floaty:nth-of-type(22) {
  --dx: -11px;
  --dy: 16px;
  --rot: 1.4deg;
  --scale: 0.05;
  --dur: 4s;
  --delay: 1.49s;
}
#projects .floaty:nth-of-type(23) {
  --dx: 4px;
  --dy: 13px;
  --rot: 0.1deg;
  --scale: 0.06;
  --dur: 5s;
  --delay: 1.22s;
}
#projects .floaty:nth-of-type(24) {
  --dx: -12px;
  --dy: -13px;
  --rot: -2.8deg;
  --scale: 0.01;
  --dur: 6s;
  --delay: -1.15s;
}
#projects .floaty:nth-of-type(25) {
  --dx: 0px;
  --dy: -3px;
  --rot: 2.3deg;
  --scale: 0.03;
  --dur: 5s;
  --delay: -0.83s;
}
#projects .floaty:nth-of-type(26) {
  --dx: -12px;
  --dy: 0px;
  --rot: -2.4deg;
  --scale: 0.05;
  --dur: 7s;
  --delay: 0.21s;
}
#projects .floaty:nth-of-type(27) {
  --dx: 4px;
  --dy: 7px;
  --rot: 0.5deg;
  --scale: 0.05;
  --dur: 7s;
  --delay: 0.5s;
}
#projects .floaty:nth-of-type(28) {
  --dx: 7px;
  --dy: -15px;
  --rot: 2.9deg;
  --scale: 0.02;
  --dur: 5s;
  --delay: 1.08s;
}
#projects .floaty:nth-of-type(29) {
  --dx: 14px;
  --dy: 4px;
  --rot: -1.8deg;
  --scale: 0.04;
  --dur: 4s;
  --delay: -0.34s;
}
#projects .floaty:nth-of-type(30) {
  --dx: -7px;
  --dy: -11px;
  --rot: 1.5deg;
  --scale: 0.06;
  --dur: 5s;
  --delay: -0.92s;
}
#projects .floaty:nth-of-type(31) {
  --dx: 1px;
  --dy: -11px;
  --rot: -2.9deg;
  --scale: 0.05;
  --dur: 6s;
  --delay: 0.07s;
}
#projects .floaty:nth-of-type(32) {
  --dx: 0px;
  --dy: -9px;
  --rot: 2.9deg;
  --scale: 0.03;
  --dur: 5s;
  --delay: -0.42s;
}
#projects .floaty:nth-of-type(33) {
  --dx: 4px;
  --dy: 2px;
  --rot: 2.4deg;
  --scale: 0.05;
  --dur: 5s;
  --delay: -1.38s;
}
#projects .floaty:nth-of-type(34) {
  --dx: 6px;
  --dy: 4px;
  --rot: 1.8deg;
  --scale: 0.01;
  --dur: 6s;
  --delay: -0.65s;
}
#projects .floaty:nth-of-type(35) {
  --dx: 7px;
  --dy: -1px;
  --rot: -1.5deg;
  --scale: 0.04;
  --dur: 7s;
  --delay: 1.42s;
}
#projects .floaty:nth-of-type(36) {
  --dx: -14px;
  --dy: 12px;
  --rot: -2.8deg;
  --scale: 0.06;
  --dur: 8s;
  --delay: -1.23s;
}
#projects .floaty:nth-of-type(37) {
  --dx: 12px;
  --dy: 15px;
  --rot: 2.2deg;
  --scale: 0.01;
  --dur: 7s;
  --delay: -0.25s;
}
#projects .floaty:nth-of-type(38) {
  --dx: 15px;
  --dy: -9px;
  --rot: 2deg;
  --scale: 0.04;
  --dur: 5s;
  --delay: 1.17s;
}
#projects .floaty:nth-of-type(39) {
  --dx: 7px;
  --dy: -13px;
  --rot: 0.2deg;
  --scale: 0.02;
  --dur: 4s;
  --delay: -0.42s;
}
#projects .floaty:nth-of-type(40) {
  --dx: 2px;
  --dy: 6px;
  --rot: 1deg;
  --scale: 0.05;
  --dur: 5s;
  --delay: -0.96s;
}

#about {
  width: 100dvw;
  height: fit-content;
  background-color: #232A60;
  padding: 0 125px 312.5px 125px;
}
#about .about-container {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1586.7/857.2;
  z-index: 1;
  background-image: url("../../img/about-container-bg.svg?v=1");
  background-repeat: no-repeat;
  display: flex;
  flex-flow: column;
  justify-content: end;
}
#about .about-container .about-content {
  container-type: size;
  width: 73%;
  height: auto;
  aspect-ratio: 1158.4/816.4;
  background-image: url("../../img/about-bg.svg?v=1");
  position: relative;
  display: grid;
  grid-template-rows: 8.87% 1fr 15.98%;
  grid-template-columns: 1fr auto;
  row-gap: 4%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#about .about-container .about-content::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7B5FFF;
  mask-image: url("../../img/about-border.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/about-border.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  z-index: 0;
  pointer-events: none;
}
#about .about-container .about-content svg {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
#about .about-container .about-content .counter {
  padding: 0.66% 74.82% 0 4.45%;
  display: flex;
  grid-row: 1/2;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #7B5FFF;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  gap: 1cqi;
  font-size: clamp(0.25rem, 3cqi, 2.25rem);
  z-index: 2;
}
#about .about-container .content {
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  grid-row: 2/3;
  height: 100%;
  width: 100%;
  overflow: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch; /* + iOS inertie */
  overscroll-behavior: contain;
  padding: 0 44.93% 0 7.56%;
  z-index: 2;
}
#about .about-container .content .about-all {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-flow: column;
  gap: 1.25cqb;
}
#about .about-container .content .about-all.is-visible {
  display: flex;
  opacity: 1;
}
#about .about-container .content .about-all.is-hiding {
  display: flex;
  opacity: 0;
}
#about .about-container .content .about-all.is-showing {
  display: flex;
  opacity: 0;
}
#about .about-container .content .about-all.is-visible.about-3, #about .about-container .content .about-all.is-hiding.about-3, #about .about-container .content .about-all.is-showing.about-3 {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}
#about .about-container .content .about-all.is-visible.about-3 h3, #about .about-container .content .about-all.is-hiding.about-3 h3, #about .about-container .content .about-all.is-showing.about-3 h3 {
  grid-row: 1/2;
}
#about .about-container .content .about-all.is-visible.about-3 .cards-carousel, #about .about-container .content .about-all.is-hiding.about-3 .cards-carousel, #about .about-container .content .about-all.is-showing.about-3 .cards-carousel {
  grid-row: 2/3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#about .about-container .content .about-all.is-visible.about-3 .cards-carousel *, #about .about-container .content .about-all.is-hiding.about-3 .cards-carousel *, #about .about-container .content .about-all.is-showing.about-3 .cards-carousel * {
  overflow: visible;
}
#about .about-container .content .about-all.is-visible.about-3 .cards-viewport, #about .about-container .content .about-all.is-hiding.about-3 .cards-viewport, #about .about-container .content .about-all.is-showing.about-3 .cards-viewport {
  width: 100%;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  aspect-ratio: 561.6/266.6;
}
#about .about-container .content .about-all.is-visible.about-3 .cards-track, #about .about-container .content .about-all.is-hiding.about-3 .cards-track, #about .about-container .content .about-all.is-showing.about-3 .cards-track {
  display: flex;
  will-change: transform;
  transform: translateX(0);
  transition: transform 0.6s ease;
  height: 100%;
}
#about .about-container .content .about-all.is-visible.about-3 .card, #about .about-container .content .about-all.is-hiding.about-3 .card, #about .about-container .content .about-all.is-showing.about-3 .card {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}
#about .about-container .content .about-all.is-visible.about-3 .card svg, #about .about-container .content .about-all.is-hiding.about-3 .card svg, #about .about-container .content .about-all.is-showing.about-3 .card svg {
  position: absolute;
  top: 0;
  left: 0;
}
#about .about-container .content .about-all.is-visible.about-3 .card .card-content, #about .about-container .content .about-all.is-hiding.about-3 .card .card-content, #about .about-container .content .about-all.is-showing.about-3 .card .card-content {
  z-index: 1;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  flex-flow: column;
  align-items: center;
  gap: 0.5cqb;
  overflow-y: auto;
}
#about .about-container .content .about-all.is-visible.about-3 .card .card-content .desc, #about .about-container .content .about-all.is-hiding.about-3 .card .card-content .desc, #about .about-container .content .about-all.is-showing.about-3 .card .card-content .desc {
  width: 100%;
  text-align: justify;
}
#about .about-container .content .about-all.is-visible.about-3 .card.card-1::before, #about .about-container .content .about-all.is-hiding.about-3 .card.card-1::before, #about .about-container .content .about-all.is-showing.about-3 .card.card-1::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #302469;
  mask-image: url("../../img/card-1.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/card-1.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  pointer-events: none;
  z-index: 0;
}
#about .about-container .content .about-all.is-visible.about-3 .card.card-1 .card-content, #about .about-container .content .about-all.is-hiding.about-3 .card.card-1 .card-content, #about .about-container .content .about-all.is-showing.about-3 .card.card-1 .card-content {
  padding: 5% 5% 5% 38%;
}
#about .about-container .content .about-all.is-visible.about-3 .card.card-2::before, #about .about-container .content .about-all.is-hiding.about-3 .card.card-2::before, #about .about-container .content .about-all.is-showing.about-3 .card.card-2::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #302469;
  mask-image: url("../../img/card-2.svg?v=1");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/card-2.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  pointer-events: none;
  z-index: 0;
}
#about .about-container .content .about-all.is-visible.about-3 .card.card-2 .card-content, #about .about-container .content .about-all.is-hiding.about-3 .card.card-2 .card-content, #about .about-container .content .about-all.is-showing.about-3 .card.card-2 .card-content {
  padding: 5% 35% 5% 5%;
}
@media (prefers-reduced-motion: reduce) {
  #about .about-container .content .about-all.is-visible.about-3 .cards-track, #about .about-container .content .about-all.is-hiding.about-3 .cards-track, #about .about-container .content .about-all.is-showing.about-3 .cards-track {
    transition: none !important;
  }
}
#about .about-container .content .about-all h3 {
  font-weight: 600;
  font-size: clamp(0.25rem, 4.5cqi, 3rem);
}
#about .about-container .content .about-all h4 {
  font-weight: 600;
  font-size: clamp(0.25rem, 3.5cqi, 3rem);
}
#about .about-container .content .about-all .desc {
  font-weight: 500;
  font-size: clamp(0.25rem, 1.75cqi, 1.25rem);
}
#about .about-container .content .about-all .desc br {
  content: "";
  display: block;
  margin-bottom: 1cqb;
}
#about .about-container .content .about-all .card-content .desc {
  font-size: clamp(0.25rem, 1.5cqi, 1.25rem);
}
#about .about-container .content .about-all .card-content .desc br {
  margin-bottom: 0.5cqb;
}
#about .about-container .nextPrev {
  height: 100%;
  width: 100%;
  grid-row: 3/4;
  padding: 4.48% 11.46% 2.41% 76.09%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
#about .about-container .nextPrev .deco {
  display: block;
  height: 100%;
  width: auto;
}
#about .about-container .nextPrev button {
  display: inline-flex;
  width: fit-content;
  height: 70%;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
  pointer-events: auto;
}
#about .about-container .nextPrev button img {
  height: 100%;
  width: auto;
}
#about .about-container .nextPrev button.prev img {
  transform: rotate(-180deg);
}
#about .about-container .nextPrev button.unactive {
  opacity: 0.5;
  pointer-events: none;
}
#about .about-container .nextPrev button.locked {
  pointer-events: none;
}

#contact {
  color: #F7F0FF;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4rem;
  position: relative;
  width: 100dvw;
  height: calc(100dvh - 312.5px);
  padding: 0 50px;
}
#contact::before {
  pointer-events: none;
  content: "";
  z-index: 2;
  display: flex;
  width: 100%;
  height: 625px;
  background-image: url("../../img/about-contact-transition.svg?v=1");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
#contact h2 {
  font-weight: 600;
  font-size: 5rem;
  text-align: center;
  z-index: 3;
}
#contact .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
#contact form {
  z-index: 3;
  max-width: 768px;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-family: "Sora", sans-serif;
}
#contact .field {
  position: relative;
  width: 100%;
}
#contact .field input,
#contact .field textarea {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #2C2970;
  border: none;
  resize: none;
  color: #F7F0FF;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#contact .field input::placeholder,
#contact .field textarea::placeholder {
  color: #A2A1B9;
}
#contact .field input:focus,
#contact .field textarea:focus {
  outline: 2px solid #7B5FFF;
  outline-offset: 1px;
}
#contact .field input.is-invalid,
#contact .field textarea.is-invalid {
  outline: 2px solid #e53935;
  outline-offset: 1px;
  background: #70292C;
}
#contact .error-msg {
  position: absolute;
  left: 0;
  top: calc(100% + 0.25rem);
  font-size: 0.875rem;
  line-height: 1.2;
  color: #e53935;
  pointer-events: none;
}
#contact #contact-submit {
  display: inline-grid;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  width: fit-content;
  height: fit-content;
  min-width: 200px;
  color: #F7F0FF;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
}
#contact #contact-submit[data-state=idle] {
  background-color: #7B5FFF;
  color: #F7F0FF;
}
#contact #contact-submit[data-state=loading] {
  background-color: rgb(135.4, 109.5, 255);
  color: #F7F0FF;
}
#contact #contact-submit[data-state=success] {
  background-color: #297041;
  color: #F7F0FF;
}
#contact #contact-submit[data-state=error] {
  background-color: #70292C;
  color: #F7F0FF;
}
#contact #contact-submit[aria-busy=true] {
  cursor: progress;
}
#contact #contact-submit .btn-state {
  grid-area: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
}
#contact #contact-submit .btn-state .btn-icon svg {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}
#contact #contact-submit[data-state=idle] .btn-state[data-when=idle], #contact #contact-submit[data-state=loading] .btn-state[data-when=loading], #contact #contact-submit[data-state=success] .btn-state[data-when=success], #contact #contact-submit[data-state=error] .btn-state[data-when=error] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
}
#contact #contact-submit[data-state=loading] .btn-state[data-when=loading] .btn-icon svg {
  animation: spin 0.9s linear infinite;
}
#contact #contact-submit[data-state=success] .btn-state[data-when=success] .btn-icon svg {
  animation: pop 0.25s ease-out both;
}
#contact #contact-submit[data-state=error] .btn-state[data-when=error] .btn-icon svg {
  animation: shake 0.45s ease-in-out both;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-2px);
  }
  40% {
    transform: translateX(2px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
}

@media screen and (max-width: 1280px) {
  #projects {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto minmax(25px, 1fr) auto;
  }
  #projects .project.project-1 {
    grid-column: 1;
    grid-row: 1;
  }
  #projects .project.project-2 {
    grid-column: 2;
    grid-row: 1;
  }
  #projects .project.project-3 {
    grid-column: 1;
    grid-row: 3;
  }
  #projects .project.project-4 {
    grid-column: 2;
    grid-row: 3;
  }
  #projects .project.project-5 {
    grid-column: 1;
    grid-row: 5;
  }
  #projects .project.project-6 {
    grid-column: 2;
    grid-row: 5;
  }
  #projects .project.project-7 {
    grid-column: 1;
    grid-row: 1;
  }
  #projects .project.project-8 {
    grid-column: 2;
    grid-row: 1;
  }
  #projects .project.project-9 {
    grid-column: 1;
    grid-row: 3;
  }
  #projects .project.project-10 {
    grid-column: 2;
    grid-row: 3;
  }
  #projects .project.project-11 {
    grid-column: 1;
    grid-row: 5;
  }
  #projects .project.project-12 {
    grid-column: 2;
    grid-row: 5;
  }
  #projects .project.project-13 {
    grid-column: 1;
    grid-row: 1;
  }
  #projects .project.project-14 {
    grid-column: 2;
    grid-row: 1;
  }
  #projects .project.project-15 {
    grid-column: 1;
    grid-row: 3;
  }
  #projects .project.project-16 {
    grid-column: 2;
    grid-row: 3;
  }
  #projects .project.project-17 {
    grid-column: 1;
    grid-row: 5;
  }
  #projects .project.project-18 {
    grid-column: 2;
    grid-row: 5;
  }
  #projects .project.project-19 {
    grid-column: 1;
    grid-row: 1;
  }
  #projects .project.project-20 {
    grid-column: 2;
    grid-row: 1;
  }
}
@media screen and (max-width: 900px) {
  #projects {
    display: flex;
    flex-flow: column;
    gap: 25px;
    scroll-margin-top: 75px;
  }
  #about {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #about .about-container {
    aspect-ratio: 1158.4/816.4;
    background-image: none;
  }
  #about .about-container .about-content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #home {
    padding: 0 1.5rem;
  }
  #home h1 {
    font-size: calc(1.5rem + 8dvw);
  }
  #home a {
    background: transparent;
    border-radius: 0;
    box-shadow: 0 0 0 0 transparent;
    padding: 0;
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    transition: none;
  }
  #home a:hover {
    box-shadow: 0 0 0 0 transparent;
    transform: translateX(-50%) translateY(0);
  }
  #home a .homeLinkPc {
    position: absolute;
    opacity: 0;
  }
  #home a .homeLinkMobile {
    display: flex;
    fill: #F7F0FF;
    width: 60px;
    aspect-ratio: 1;
    animation: bounceDownUp 5s cubic-bezier(0.25, 0.5, 0.25, 1) infinite;
  }
  @keyframes bounceDownUp {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes bounceDownUp {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  #projects {
    padding: 125px 1.5rem;
    scroll-margin-top: 75px;
    gap: 40px;
  }
  #about {
    padding: 0 25px 195px 25px;
  }
  #about .about-container .about-content .nextPrev {
    padding: 0;
    margin: 0 auto;
    transform: translateY(75px); /* <-- on supprime le scale déstabilisant */
    width: min(35%, 250px);
    height: clamp(40px, 12cqi, 64px);
    gap: clamp(8px, 2cqi, 16px);
  }
  #about .about-container .about-content .nextPrev button {
    display: inline-flex;
  }
  #contact {
    height: fit-content;
    padding: 100px 25px;
    height: fit-content;
  }
  #contact::before {
    pointer-events: none;
    height: 390px;
    background-image: url("../../img/about-contact-transition-mobile.svg?v=1");
  }
  #contact h2 {
    font-size: calc(1.5rem + 8dvw);
  }
}


/* =========================
   Mentions légales
   ========================= */
#legal-mentions {
  font-family: "Sora", sans-serif;
  color: white;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  padding-top: 9%;
  flex: 1;
}

/* Titre principal */
#legal-mentions h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Sous-titres */
#legal-mentions h2 {
  font-weight: 600;
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  border-left: 4px solid #7b5fff;
  padding-left: 0.75rem;
}

/* Paragraphes */
#legal-mentions p {
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 6.5%;
  text-align: justify;
  opacity: 0.9;
}

/* Liens */
#legal-mentions a {
  color: #a491ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

#legal-mentions a:hover {
  color: #82c7ff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  #legal-mentions {
      height: 100%;
    padding: 5rem 1.5rem 1rem 1rem;
  }

  #legal-mentions h1 {
    font-size: 1.6rem;
  }

  #legal-mentions h2 {
    font-size: 1.1rem;
  }
}

/* =========================
   Conditions Générales de Vente
   ========================= */
#conditions {
    font-family: "Sora", sans-serif;
    color: white;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    padding-top: 6%;
    flex: 1;
}

/* Titre principal */
#conditions h1 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Sous-titres */
#conditions h2 {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    border-left: 4px solid #7b5fff;
    padding-left: 0.75rem;
}

/* Paragraphes */
#conditions p {
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0.9;
}

/* Liens */
#conditions a {
    color: #a491ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

#conditions a:hover {
    color: #82c7ff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    #conditions {
        padding: 5rem 1.5rem 1rem 1rem;
    }

    #conditions h1 {
        font-size: 1.6rem;
    }

    #conditions h2 {
        font-size: 1.1rem;
    }
}



/*# sourceMappingURL=home.css.map */
