@charset "UTF-8";
@import "reset.css";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*$bg-color-dark: linear-gradient(156.2deg, rgba(0, 0, 0, 1) 14.8%, rgba(32, 104, 177, 1) 68.1%, rgb(224, 222, 237) 129%);*/
/*$bg-color-light: linear-gradient(156.2deg, rgba(222, 229, 237) 14.8%, rgba(32, 104, 177, 1) 68.1%, rgba(0, 0, 0) 129%);*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #000000;
}
@media (max-width: 1100px) {
  html {
    overflow-x: hidden;
  }
}
html body {
  height: calc(100vh + 150px);
  font-family: "Space Grotesk";
}
@media (max-width: 1100px) {
  html body {
    align-items: center;
  }
}
html body #message-envoyé-p {
  position: fixed;
  transform: translateY(150%);
  opacity: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 10px;
  bottom: 24px;
  right: 24px;
  height: 53px;
  width: 200px;
  color: #0a0a0a;
  font-size: 13px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 19.5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
}
html body #message-envoyé-p.show {
  animation: fade-in 5s forwards;
  animation-delay: 0s;
}
@keyframes fade-in {
  0% {
    transform: translateY(150%);
    opacity: 0;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(150%);
    opacity: 0;
  }
}
html body #message-no-envoyé-p {
  display: none;
  position: fixed;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 10px;
  bottom: 24px;
  right: 24px;
  height: 53px;
  width: 200px;
  color: #0a0a0a;
  font-size: 13px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 19.5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
}
html body #homeAmbiance {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  html body #homeAmbiance {
    display: none;
  }
}
html body #homeAmbiance #sphere1Home,
html body #homeAmbiance #sphere2Home,
html body #homeAmbiance #sphere3Home {
  position: absolute;
  filter: blur(150px);
  border-radius: 999px;
  z-index: -1;
}
html body #homeAmbiance #sphere1Home {
  width: 600px;
  height: 600px;
  top: 10%;
  left: 7%;
  animation: sphere1Bounce 6s ease-in-out infinite;
  background-color: rgba(43, 127, 255, 0.4);
}
@keyframes sphere1Bounce {
  0% {
    top: 10%;
  }
  50% {
    top: 15%;
  }
  100% {
    top: 10%;
  }
}
html body #homeAmbiance #sphere2Home {
  width: 600px;
  height: 600px;
  top: 65%;
  right: 5%;
  background-color: rgba(173, 70, 255, 0.4);
  animation: sphere2Bounce 8s ease-in-out infinite;
}
@keyframes sphere2Bounce {
  0% {
    top: 65%;
  }
  50% {
    top: 60%;
  }
  100% {
    top: 65%;
  }
}
html body #homeAmbiance #sphere3Home {
  width: 600px;
  height: 600px;
  top: 165%;
  left: 5%;
  background-color: rgba(70, 206, 255, 0.15);
}
html body #nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 44px;
}
@media (max-width: 1100px) {
  html body #nav {
    display: flex;
    justify-content: end;
    margin-right: 20px;
  }
}
html body #nav #navbar {
  display: flex;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(50px) saturate(450%);
  padding: 0 13px;
  flex-direction: row;
  justify-content: space-between;
  height: 54px;
  position: fixed;
  z-index: 9999;
  transition: scale 0.2s ease-out;
}
@media (max-width: 1100px) {
  html body #nav #navbar {
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    margin: 20px auto;
    padding: 5px 0;
    width: 85%;
  }
}
html body #nav #navbar ul {
  position: relative;
  display: flex;
  gap: 8px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  html body #nav #navbar ul {
    display: flex;
    gap: 10px;
    padding: 0;
    align-items: center;
  }
}
html body #nav #navbar ul #active {
  position: absolute;
  border-radius: 13px;
  height: 34px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: left 150ms ease-in-out, width 150ms ease-in-out;
}
html body #nav #navbar ul li {
  display: flex;
  list-style: none;
  transition: all 150ms ease-in-out;
}
html body #nav #navbar ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  padding: 5px 12px;
}
html body #nav #navbar ul li a:hover {
  color: #ffffff;
}
@media (max-width: 1100px) {
  html body #nav #navbar ul .li-login-btn {
    display: none;
  }
}
html body #nav #navbar ul svg {
  display: flex;
}
html body #nav #navbar ul svg path {
  stroke: rgba(255, 255, 255, 0.8);
}
html body #nav #navbar ul svg:hover {
  transform: scale(1.05);
}
html body #nav #navbar ul svg:hover path {
  stroke: #ffffff;
}
html body #hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: rgba(255, 255, 255, 0.8);
  gap: 32px;
}
html body #hero::after {
  display: none;
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(20% 10%, 80% 10%, 65% 110%, 35% 110%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 215, 0, 0.5), transparent);
  pointer-events: none;
}
html body #hero #hero-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 256px;
  line-height: 128px;
}
html body #hero #hero-subtitle {
  position: relative;
  z-index: 3;
  margin-top: 50px;
  color: #51a2ff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}
html body #hero #hero-description {
  position: relative;
  z-index: 3;
  width: 620px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}
html body #hero #hero-icon {
  position: relative;
  z-index: 3;
  display: flex;
  width: 102px;
  height: 18px;
  align-items: center;
  gap: 24px;
}
html body #hero #hero-icon .fa-github,
html body #hero #hero-icon .fa-linkedin-in,
html body #hero #hero-icon .fa-paper-plane {
  height: 18px;
  flex-shrink: 0;
  align-self: stretch;
  color: rgba(255, 255, 255, 0.7);
  transition: 300ms;
}
html body #hero #hero-icon .fa-github:hover,
html body #hero #hero-icon .fa-linkedin-in:hover,
html body #hero #hero-icon .fa-paper-plane:hover {
  height: 18px;
  flex-shrink: 0;
  align-self: stretch;
  color: #ffffff;
}
html body #hero #hero-links {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: -10px;
  height: 58px;
}
@media (max-width: 1100px) {
  html body #hero #hero-links {
    flex-direction: column;
  }
}
html body #hero #hero-links #hero-links-project {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 11px 33px 12px 33px;
  gap: 8px;
  border: 1px solid rgba(81, 162, 255, 0.5);
  border-radius: 999px;
  background: #1f5fbe;
  box-shadow: 0 10px 15px -3px rgba(43, 127, 255, 0.3), 0 4px 6px -4px rgba(43, 127, 255, 0.3);
  transition: all 300ms ease-in-out;
}
html body #hero #hero-links #hero-links-project:hover {
  transform: scale(1.1);
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: #3a5af9;
}
html body #hero #hero-links #hero-links-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 16px 33px 18px 33px;
  gap: 8px;
  transition: all 300ms ease-in-out;
}
html body #hero #hero-links #hero-links-contact .trait {
  background: #fff;
  height: 1px;
  width: 10px;
  transition: all 300ms ease-in-out;
}
html body #hero #hero-links #hero-links-contact:hover .trait {
  width: 25px;
}
@keyframes breathingLight {
  0% {
    opacity: 0.4;
    filter: blur(0px);
  }
  50% {
    opacity: 0.85;
    filter: blur(2px);
  }
  100% {
    opacity: 0.4;
    filter: blur(0px);
  }
}
@keyframes driftingDust {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: 200px 200px;
  }
}
html body #section-projet {
  display: flex;
  flex-direction: column;
  gap: 17px;
  text-align: center;
  margin-top: 170px;
  padding-top: 170px;
}
@media (max-width: 1100px) {
  html body #section-projet {
    display: none;
  }
}
html body #section-projet h1 {
  font-size: 60px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  html body #section-projet h1 {
    font-size: 36px;
  }
}
html body #section-projet p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1100px) {
  html body #section-projet p {
    font-size: 18px;
  }
}
html body #selection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 1200px;
  margin: 75px auto;
}
@media (max-width: 1100px) {
  html body #selection {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    width: 100%;
  }
}
html body #selection .section-container {
  display: flex;
  flex-direction: column;
  gap: 130px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
html body #selection .section-container #selectionCard01 {
  scroll-snap-align: start;
  display: flex;
  justify-content: left;
  align-items: center;
  scroll-snap-stop: always;
  gap: 33px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard01 {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 33px;
    align-items: center;
  }
}
html body #selection .section-container #selectionCard01 #leftSelectCard01 {
  display: flex;
  flex-direction: column;
}
html body #selection .section-container #selectionCard01 #midSelectCard01 img {
  width: 602px;
  height: 376px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease-out;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard01 #midSelectCard01 img {
    display: flex;
    width: 326px;
    height: 204px;
  }
}
html body #selection .section-container #selectionCard01 #midSelectCard01 img:hover {
  transform: scale(1.02);
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard01 #rightSelectCard01 {
    display: flex;
    gap: 33px;
    width: 328.66px;
  }
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 h1 {
  color: rgba(81, 162, 255, 0.7);
  font-size: 72px;
  font-weight: 700;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard01 #rightSelectCard01 h1 {
    font-size: 60px;
  }
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 h2 {
  color: rgb(255, 255, 255);
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard01 #rightSelectCard01 h2 {
    font-size: 30px;
  }
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard01 #rightSelectCard01 p {
    font-size: 16px;
  }
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionTopic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionTopic {
    grid-template-columns: repeat(2, 1fr);
  }
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionTopic li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  color: rgb(255, 255, 255);
  padding: 9px 16px 9px 17px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionTopic li a {
  font-size: 14px;
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionMore {
  display: flex;
  gap: 16px;
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionMore #selectionShowMore {
  display: flex;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 16px 33px 18px 33px;
  gap: 8px;
  border: 1px solid rgba(81, 162, 255, 0.5);
  border-radius: 999px;
  background: #1f5fbe;
  box-shadow: 0 10px 15px -3px rgba(43, 127, 255, 0.3), 0 4px 6px -4px rgba(43, 127, 255, 0.3);
  transition: all 300ms ease-in-out;
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionMore #selectionShowMore img {
  transition: all 300ms ease-out;
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionMore #selectionShowMore a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  gap: 7px;
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionMore #selectionShowMore a:hover > img {
  transform: translateX(5px) translateY(-5px);
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionMore #selectionShowMore:hover {
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: #3a5af9;
  cursor: pointer;
}
html body #selection .section-container #selectionCard01 #rightSelectCard01 #selectionMore #selectionGithub {
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  list-style: none;
}
html body #selection .section-container #selectionCard02 {
  scroll-snap-align: start;
  display: flex;
  scroll-snap-stop: always;
  gap: 33px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard02 {
    display: flex;
    flex-direction: column-reverse;
    gap: 33px;
    margin-top: 80px;
    justify-content: center;
    align-items: center;
  }
}
html body #selection .section-container #selectionCard02 #leftSelectCard02 {
  display: flex;
  flex-direction: column;
}
html body #selection .section-container #selectionCard02 #midSelectCard02 img {
  width: 602px;
  height: 376px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease-out;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard02 #midSelectCard02 img {
    display: flex;
    width: 326px;
    height: 204px;
  }
}
html body #selection .section-container #selectionCard02 #midSelectCard02 img:hover {
  transform: scale(1.02);
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard02 #rightSelectCard02 {
    display: flex;
    gap: 33px;
    width: 328.66px;
  }
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 h1 {
  color: rgba(81, 162, 255, 0.7);
  font-size: 72px;
  font-weight: 700;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard02 #rightSelectCard02 h1 {
    font-size: 60px;
  }
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 h2 {
  color: rgb(255, 255, 255);
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard02 #rightSelectCard02 h2 {
    font-size: 30px;
  }
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard02 #rightSelectCard02 p {
    font-size: 16px;
  }
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionTopic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1260px) {
  html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionTopic {
    grid-template-columns: repeat(2, 1fr);
  }
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionTopic li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  color: rgb(255, 255, 255);
  padding: 9px 16px 9px 17px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionTopic li a {
  font-size: 14px;
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionMore {
  display: flex;
  gap: 16px;
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionMore #selectionShowMore {
  display: flex;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 16px 33px 18px 33px;
  gap: 8px;
  border: 1px solid rgba(81, 162, 255, 0.5);
  border-radius: 999px;
  background: #1f5fbe;
  box-shadow: 0 10px 15px -3px rgba(43, 127, 255, 0.3), 0 4px 6px -4px rgba(43, 127, 255, 0.3);
  transition: all 300ms ease-in-out;
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionMore #selectionShowMore img {
  transition: all 300ms ease-out;
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionMore #selectionShowMore a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  gap: 7px;
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionMore #selectionShowMore a:hover > img {
  transform: translateX(5px) translateY(-5px);
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionMore #selectionShowMore:hover {
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: #3a5af9;
  cursor: pointer;
}
html body #selection .section-container #selectionCard02 #rightSelectCard02 #selectionMore #selectionGithub {
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  list-style: none;
}
html body #swipe {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 27px;
}
@media (min-width: 1100px) {
  html body #swipe {
    display: none;
  }
}
@media (max-width: 1100px) {
  html body #swipe {
    display: none;
  }
}
html body #swipe .fa-arrow-left {
  color: white;
}
html body #swipe p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
}
html body #experienceTitle {
  display: flex;
  flex-direction: column;
  gap: 17px;
  text-align: center;
  padding-top: 150px;
}
@media (max-width: 1100px) {
  html body #experienceTitle {
    display: flex;
  }
}
html body #experienceTitle h1 {
  font-size: 60px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
html body #experienceTitle p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
html body #experienceSection {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  padding: 48px 0;
  width: 100%;
  max-width: 1500px;
  box-sizing: border-box;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
html body #experienceSection #card-presoa {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(0, 201, 80, 0.2);
  background: linear-gradient(135deg, rgba(0, 201, 80, 0.2) 0%, rgba(0, 201, 80, 0.05) 100%);
  width: 30%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
}
html body #experienceSection #card-presoa .annee {
  position: absolute;
  z-index: 0;
  right: 16px;
  top: 16px;
  display: flex;
}
html body #experienceSection #card-presoa .annee p {
  color: rgba(255, 255, 255, 0.05);
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}
html body #experienceSection #card-presoa .icon {
  color: #05df72;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 201, 80, 0.2);
  background: rgba(0, 201, 80, 0.1);
}
html body #experienceSection #card-presoa .icon .fa-briefcase-medical {
  color: #05df72;
}
html body #experienceSection #card-presoa .titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #experienceSection #card-presoa .titre p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
html body #experienceSection #card-presoa .titre span {
  display: flex;
  padding: 4px 9.516px 4px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 33554400px;
  background: rgba(0, 201, 80, 0.1);
  color: #05df72;
  font-family: "Space Grotesk";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
}
html body #experienceSection #card-presoa .lieu {
  display: flex;
  width: 328px;
  padding-right: 282px;
  align-items: center;
}
html body #experienceSection #card-presoa .lieu p {
  color: #05df72;
}
html body #experienceSection #card-presoa .date p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 16px;
}
html body #experienceSection #card-presoa .description {
  height: 40px;
  padding-right: 45.5px;
  align-items: center;
}
html body #experienceSection #card-presoa .description p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 20px;
}
html body #experienceSection #card-presoa:hover {
  border: 1px solid rgba(0, 201, 80, 0.5);
}
html body #experienceSection #card-promeo {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(43, 127, 255, 0.2);
  background: linear-gradient(135deg, rgba(43, 127, 255, 0.2) 0%, rgba(43, 127, 255, 0.05) 100%);
  width: 30%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: all 300ms ease-in-out;
}
html body #experienceSection #card-promeo .annee {
  position: absolute;
  z-index: 0;
  right: 16px;
  top: 16px;
  display: flex;
}
html body #experienceSection #card-promeo .annee p {
  color: rgba(255, 255, 255, 0.05);
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}
html body #experienceSection #card-promeo .icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(43, 127, 255, 0.2);
  background: rgba(43, 127, 255, 0.1);
}
html body #experienceSection #card-promeo .icon .fa-graduation-cap {
  color: #51a2ff;
}
html body #experienceSection #card-promeo .titre {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 8px;
}
html body #experienceSection #card-promeo .titre p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
html body #experienceSection #card-promeo .titre span {
  display: flex;
  padding: 4px 9.75px 4px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: rgba(43, 127, 255, 0.1);
  color: #51a2ff;
  font-family: "Space Grotesk";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
}
html body #experienceSection #card-promeo .lieu {
  display: flex;
  width: 328px;
  padding-right: 282px;
  align-items: center;
}
html body #experienceSection #card-promeo .lieu p {
  color: #51a2ff;
}
html body #experienceSection #card-promeo .date p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 16px;
}
html body #experienceSection #card-promeo .description {
  height: 40px;
  padding-right: 45.5px;
  align-items: center;
}
html body #experienceSection #card-promeo .description p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 20px;
}
html body #experienceSection #card-promeo:hover {
  border: 1px solid rgba(43, 127, 255, 0.5);
}
html body #experienceSection #card-grenet {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(173, 70, 255, 0.2);
  background: linear-gradient(135deg, rgba(173, 70, 255, 0.2) 0%, rgba(173, 70, 255, 0.05) 100%);
  width: 30%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
}
html body #experienceSection #card-grenet .annee {
  position: absolute;
  z-index: 0;
  right: 16px;
  top: 16px;
  display: flex;
}
html body #experienceSection #card-grenet .annee p {
  color: rgba(255, 255, 255, 0.05);
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}
html body #experienceSection #card-grenet .icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(173, 70, 255, 0.2);
  background: rgba(173, 70, 255, 0.1);
}
html body #experienceSection #card-grenet .icon .fa-graduation-cap {
  color: #c27aff;
}
html body #experienceSection #card-grenet .titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #experienceSection #card-grenet .titre p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
html body #experienceSection #card-grenet .titre span {
  display: flex;
  padding: 4px 9.5px 4px 10px;
  justify-content: center;
  align-items: center;
  color: #c27aff;
  border-radius: 999px;
  background: rgba(173, 70, 255, 0.1);
  font-family: "Space Grotesk";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
}
html body #experienceSection #card-grenet .lieu {
  display: flex;
  width: 328px;
  padding-right: 282px;
  align-items: center;
}
html body #experienceSection #card-grenet .lieu p {
  color: #c27aff;
}
html body #experienceSection #card-grenet .date p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 16px;
}
html body #experienceSection #card-grenet .description {
  height: 40px;
  padding-right: 45.5px;
  align-items: center;
}
html body #experienceSection #card-grenet .description p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 20px;
}
html body #experienceSection #card-grenet:hover {
  border: 1px solid rgba(173, 70, 255, 0.5);
}
html body #experience-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
html body #experience-link .liste-et-lien {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1500px;
}
html body #experience-link .liste-et-lien #list-tag {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
html body #experience-link .liste-et-lien #list-tag .tag-1 {
  display: flex;
  flex-direction: row;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 211, 243, 0.3);
  background: rgba(0, 184, 219, 0.1);
  padding: 7px 13px 6.5px 13px;
  transition: all 250ms ease-in-out;
}
html body #experience-link .liste-et-lien #list-tag .tag-1 .fa-code {
  color: #00d3f3;
}
html body #experience-link .liste-et-lien #list-tag .tag-1 p {
  color: #00d3f3;
}
html body #experience-link .liste-et-lien #list-tag .tag-1:hover {
  border: 1px solid rgba(0, 211, 243, 0.5);
  cursor: default;
}
html body #experience-link .liste-et-lien #list-tag .tag-2 {
  display: flex;
  flex-direction: row;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(5, 223, 114, 0.3);
  background: rgba(0, 201, 80, 0.1);
  padding: 7px 13px 6.5px 13px;
  transition: all 250ms ease-in-out;
}
html body #experience-link .liste-et-lien #list-tag .tag-2 .fa-wrench {
  color: #05df72;
}
html body #experience-link .liste-et-lien #list-tag .tag-2 p {
  color: #05df72;
}
html body #experience-link .liste-et-lien #list-tag .tag-2:hover {
  border: 1px solid rgba(5, 223, 114, 0.5);
  cursor: default;
}
html body #experience-link .liste-et-lien #list-tag .tag-3 {
  display: flex;
  flex-direction: row;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(194, 122, 255, 0.3);
  background: rgba(173, 70, 255, 0.1);
  padding: 7px 13px 6.5px 13px;
  transition: all 250ms ease-in-out;
}
html body #experience-link .liste-et-lien #list-tag .tag-3 .fa-swatchbook {
  color: #c27aff;
}
html body #experience-link .liste-et-lien #list-tag .tag-3 p {
  color: #c27aff;
}
html body #experience-link .liste-et-lien #list-tag .tag-3:hover {
  border: 1px solid rgba(194, 122, 255, 0.5);
  cursor: default;
}
html body #experience-link .liste-et-lien #list-tag .tag-4 {
  display: flex;
  flex-direction: row;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: rgba(43, 127, 255, 0.1);
  padding: 7px 13px 6.5px 13px;
  transition: all 250ms ease-in-out;
}
html body #experience-link .liste-et-lien #list-tag .tag-4 .fa-graduation-cap {
  color: #51a2ff;
}
html body #experience-link .liste-et-lien #list-tag .tag-4 p {
  color: #51a2ff;
}
html body #experience-link .liste-et-lien #list-tag .tag-4:hover {
  border: 1px solid rgba(81, 162, 255, 0.5);
  cursor: default;
}
html body #experience-link .liste-et-lien #liens-experience {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
html body #experience-link .liste-et-lien #liens-experience .en-savoir-plus {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #1f5be1;
  box-shadow: 0 10px 15px -3px rgba(43, 127, 255, 0.25), 0 4px 6px -4px rgba(43, 127, 255, 0.25);
  transition: all 300ms ease-in-out;
}
html body #experience-link .liste-et-lien #liens-experience .en-savoir-plus a {
  display: flex;
  flex-direction: row;
  gap: 6px;
  text-decoration: none;
  color: #ffffff;
  align-items: center;
}
html body #experience-link .liste-et-lien #liens-experience .en-savoir-plus a .fa-angle-right {
  color: #fff;
}
html body #experience-link .liste-et-lien #liens-experience .en-savoir-plus:hover {
  background: #1d59b3;
}
html body #experience-link .liste-et-lien #liens-experience .telecharger-le-cv {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  gap: 6px;
}
html body #experience-link .liste-et-lien #liens-experience .telecharger-le-cv .fa-file-arrow-down {
  color: rgba(255, 255, 255, 0.5);
}
html body #experience-link .liste-et-lien #liens-experience .telecharger-le-cv a {
  text-decoration: none;
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.5);
}
html body #contactTitle {
  display: flex;
  flex-direction: column;
  gap: 17px;
  text-align: center;
  margin-top: 170px;
  padding-top: 170px;
}
@media (max-width: 1100px) {
  html body #contactTitle {
    display: flex;
  }
}
html body #contactTitle h1 {
  font-size: 60px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
html body #contactTitle p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
html body #contactSection {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  margin: 80px auto;
}
@media (max-width: 1100px) {
  html body #contactSection {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin: 0px 0;
    box-sizing: border-box;
  }
}
html body #contactSection .section-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  gap: 87px;
  box-sizing: border-box;
}
html body #contactSection .section-container #contactLeftMainContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  border: 0.8px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(43, 127, 255, 0.1) 0%, rgba(173, 70, 255, 0.1) 100%);
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: start;
}
@media (max-width: 1100px) {
  html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou {
    display: flex;
    width: 100%;
    background: red;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou h1 {
  color: rgb(255, 255, 255);
  font-size: 30px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 1100px) {
  html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo {
    display: flex;
    width: 100%;
    background: cyan;
    justify-content: center;
    box-sizing: border-box;
  }
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #mail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #mail .fa-envelope {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 13px;
  border-radius: 14px;
  color: rgb(81, 162, 255);
  border: 0.8px solid rgba(81, 162, 255, 0.3);
  background: rgba(43, 127, 255, 0.2);
  justify-content: center;
  align-items: center;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #mail #mailText {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #mail #mailText h1 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #mail #mailText p {
  font-size: 14px;
  color: rgb(255, 255, 255);
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #telephone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #telephone .fa-phone {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 13px;
  border-radius: 14px;
  color: rgb(194, 122, 255);
  border: 0.8px solid rgba(194, 122, 255, 0.3);
  background: rgba(173, 70, 255, 0.2);
  justify-content: center;
  align-items: center;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #telephone #telephoneText {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #telephone #telephoneText h1 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #telephone #telephoneText p {
  font-size: 14px;
  color: rgb(255, 255, 255);
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #localisation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #localisation .fa-location-dot {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 13px;
  border-radius: 14px;
  color: rgb(0, 211, 242);
  border: 0.8px solid rgba(0, 211, 242, 0.3);
  background: rgba(0, 184, 219, 0.2);
  justify-content: center;
  align-items: center;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #localisation #localisationText {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #localisation #localisationText h1 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
html body #contactSection .section-container #contactLeftMainContent #talkWithYouContent #talkWithYou #contactInfo #localisation #localisationText p {
  font-size: 14px;
  color: rgb(255, 255, 255);
}
html body #contactSection .section-container #contactLeftMainContent #myLinkContent {
  border-radius: 24px;
  border: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  width: 100%;
}
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink {
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 16px;
}
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink p {
  color: rgb(255, 255, 255);
  font-size: 18px;
}
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links a {
  text-decoration: none;
}
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links .fa-github,
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links .fa-linkedin-in,
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links .fa-paper-plane {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transition: all 150ms ease-in-out;
  height: 24px;
  width: 24px;
  color: white;
}
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links .fa-github:hover,
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links .fa-linkedin-in:hover,
html body #contactSection .section-container #contactLeftMainContent #myLinkContent #myLink #links .fa-paper-plane:hover {
  border: 1px solid rgba(81, 162, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent {
  display: flex;
  flex-direction: column;
  padding: 24px;
  width: 100%;
  border-radius: 24px;
  border: 0.8px solid rgba(255, 137, 4, 0.2);
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(254, 154, 0, 0.1) 100%);
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent #myStatus {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent #myStatus .fa-message {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 13px;
  border-radius: 14px;
  color: rgb(255, 137, 4);
  border: 0.8px solid rgba(255, 137, 4, 0.3);
  background: rgba(255, 105, 0, 0.2);
  justify-content: center;
  align-items: center;
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent #myStatus #myStatusText {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent #myStatus #myStatusText li {
  display: flex;
  align-items: center;
  list-style: none;
  color: #ff8904;
  font-size: 16px;
  gap: 8px;
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent #myStatus #myStatusText li #dashboard-status-dot {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  animation: scale 2s infinite;
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent #myStatus #myStatusText li #dashboard-status-dot.dashboard-dot-active {
  background-color: #ff8904;
}
@keyframes scale {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
html body #contactSection .section-container #contactLeftMainContent #myStatusContent #myStatus #myStatusText p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
@media (max-width: 1100px) {
  html body #contactSection .section-container #contactLeftMainContent {
    display: none;
  }
}
html body #contactSection .section-container #contactRightMainContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 40px;
  gap: 50px;
  border: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #contactSection .section-container #contactRightMainContent #contactPart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart h1 {
  color: rgb(255, 255, 255);
  font-size: 30px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 24px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormName {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormName label {
  color: rgb(255, 255, 255);
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormName label #contactFormRequired {
  color: #ff6467;
  font-weight: bolder;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormName #name {
  border-radius: 14px;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  font-family: "Space Grotesk";
  color: rgb(255, 255, 255);
  transition: all 0.15s ease-in-out;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormName #name:focus {
  border-color: rgb(255, 255, 255);
  box-shadow: rgb(255, 255, 255) outset;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormEmail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormEmail label {
  color: rgb(255, 255, 255);
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormEmail label #contactFormRequired {
  color: #ff6467;
  font-weight: bolder;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormEmail #email {
  border-radius: 14px;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  font-family: "Space Grotesk";
  color: rgb(255, 255, 255);
  transition: all 0.15s ease-in-out;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormEmail #email:focus {
  border-color: rgb(255, 255, 255);
  box-shadow: rgb(255, 255, 255) outset;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormTopic {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormTopic label {
  color: rgb(255, 255, 255);
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormTopic label #contactFormRequired {
  color: #ff6467;
  font-weight: bolder;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormTopic #topic {
  border-radius: 14px;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  font-family: "Space Grotesk";
  color: rgb(255, 255, 255);
  transition: all 0.15s ease-in-out;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormTopic #topic:focus {
  border-color: rgb(255, 255, 255);
  box-shadow: rgb(255, 255, 255) outset;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormMessage {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormMessage label {
  color: rgb(255, 255, 255);
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormMessage label #contactFormRequired {
  color: #ff6467;
  font-weight: bolder;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormMessage #message {
  border-radius: 14px;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  font-family: "Space Grotesk";
  color: rgb(255, 255, 255);
  transition: all 0.15s ease-in-out;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormMessage #message:focus {
  border-color: rgb(255, 255, 255);
  box-shadow: rgb(255, 255, 255) outset;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormButtons {
  display: flex;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 16px 33px 18px 33px;
  gap: 8px;
  border: 1px solid rgba(81, 162, 255, 0.5);
  border-radius: 999px;
  background: #2b7fff;
  box-shadow: 0 10px 15px -3px rgba(43, 127, 255, 0.3), 0 4px 6px -4px rgba(43, 127, 255, 0.3);
  transition: all 300ms ease-in-out;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormButtons button {
  cursor: pointer;
  padding: 11px 200px;
  display: flex;
  flex-direction: row;
  color: rgb(255, 255, 255);
  background: transparent;
  border: none;
  gap: 16px;
  font-size: 16px;
}
html body #contactSection .section-container #contactRightMainContent #contactPart #contactForm #contactFormButtons:hover {
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: #3a5af9;
  cursor: pointer;
}
html body #contactSection .section-container #contactRightMainContent #contactPart p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  padding: 10px;
}
@media (max-width: 1100px) {
  html body #contactRightMainContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    width: 400px;
    gap: 87px;
    box-sizing: border-box;
  }
  html body #contactRightMainContent #contactPart {
    display: flex;
    width: 350px;
  }
}
html body #login-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  height: 100vh;
}
html body #login-body .login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 24px 48px;
  height: 400px;
  width: 324px;
  gap: 16px;
}
html body #login-body .login-container #error-message {
  display: none;
  width: 100%;
}
html body #login-body .login-container #error-message #error-message-p {
  color: red;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 0, 0, 0.1);
  background: rgba(255, 0, 0, 0.05);
  padding: 10px 15px;
}
html body #login-body .login-container .up-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
html body #login-body .login-container .up-container .back-home-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 15px;
  width: 95px;
}
html body #login-body .login-container .up-container .back-home-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 5px 15px;
  gap: 8px;
}
html body #login-body .login-container .up-container .back-home-button a .fa-arrow-left {
  color: white;
}
html body #login-body .login-container .up-container .back-home-button a:hover > img {
  transform: translateX(-5px);
  scale: 1.2;
}
html body #login-body .login-container .up-container .logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  width: 100%;
}
html body #login-body .login-container .up-container .logo p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  gap: 8px;
}
html body #login-body .login-container .input-container {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 33px;
  gap: 20px;
}
html body #login-body .login-container .input-container .input-content {
  display: flex;
  padding: 16px 48px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}
html body #login-body .login-container .input-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  padding: 15px 0;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #2b7fff 0%, #ad46ff 100%);
  box-shadow: 0 10px 15px -3px rgba(43, 127, 255, 0.3), 0 4px 6px -4px rgba(43, 127, 255, 0.3);
  font-size: 14px;
  transition: all ease 0.2s;
}
html body #login-body .login-container .input-container button:hover {
  scale: 1.03;
}
html body #dashboard-body {
  display: flex;
  flex-direction: column;
  font-family: "Space Grotesk";
  width: 60%;
  margin: 24px auto;
}
html body #dashboard-body #dashboard-header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 24px auto;
}
html body #dashboard-body #dashboard-header-content #dashboard-title-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
html body #dashboard-body #dashboard-header-content #dashboard-title-container li {
  list-style: none;
}
html body #dashboard-body #dashboard-header-content #dashboard-title-container li .dashboard-index-back {
  display: flex;
  padding: 9px;
  text-decoration: none;
  border-radius: 33554400px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
}
html body #dashboard-body #dashboard-header-content #dashboard-title-container li .dashboard-index-back .fa-arrow-left {
  color: white;
}
html body #dashboard-body #dashboard-header-content #dashboard-title-container .dashboard-title {
  display: flex;
  flex-direction: column;
}
html body #dashboard-body #dashboard-header-content #dashboard-title-container .dashboard-title #dashboard-title-h1 {
  color: rgb(255, 255, 255);
  font-size: 24px;
  line-height: 32px;
}
html body #dashboard-body #dashboard-header-content #dashboard-title-container .dashboard-title #dashboard-title-p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 20px;
}
html body #dashboard-body #dashboard-header-content #dashboard-state-system {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
html body #dashboard-body #dashboard-header-content #dashboard-state-system #dashboard-status-dot {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
html body #dashboard-body #dashboard-header-content #dashboard-state-system #dashboard-status-dot.dashboard-dot-active {
  background-color: #05df72;
  box-shadow: 0 0 8px #05df72;
}
html body #dashboard-body #dashboard-header-content #dashboard-state-system #dashboard-status-dot.dashboard-dot-inactive {
  background-color: #ff4d4d;
  box-shadow: 0 0 8px #ff4d4d;
}
html body #dashboard-body #dashboard-header-content #dashboard-state-system #dashboard-status-text {
  display: flex;
  color: rgb(255, 255, 255);
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
html body #dashboard-body #dashboard-nav {
  display: flex;
  justify-content: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
html body #dashboard-body #dashboard-nav #dashboard-navbar-container {
  display: flex;
  color: rgb(255, 255, 255);
  transition: stroke 0.3s ease;
}
html body #dashboard-body #dashboard-nav #dashboard-navbar-container li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  padding: 15px 24px 18px 24px;
  gap: 8px;
}
html body #dashboard-body #dashboard-nav #dashboard-navbar-container li #dashboard-active-page {
  text-decoration: none;
  color: #51a2ff;
}
html body #dashboard-body #dashboard-nav #dashboard-navbar-container li a {
  display: flex;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color 150ms ease-in-out;
}
html body #dashboard-body #dashboard-nav #dashboard-navbar-container li a:hover {
  display: flex;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  color: #346aa8;
}
html body #dashboard-body #dashboard-nav #dashboard-navbar-container li a:hover .fa-chart-line {
  color: #346aa8;
  transition: stroke 0.3s ease;
}
html body #dashboard-body #monitoring-container {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  width: 100%;
  gap: 48px;
}
html body #dashboard-body #monitoring-container .dashboard-card {
  display: grid;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 176px;
  margin: 0 auto;
  color: rgb(255, 255, 255);
  gap: 24px;
  flex-shrink: 0;
  grid-template-rows: repeat(1, minmax(0, 1fr));
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 25px;
  border-radius: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-user-group,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-eye,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-clock,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-arrow-trend-up,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-user-group,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-eye,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-clock,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-arrow-trend-up,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-user-group,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-eye,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-clock,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-arrow-trend-up,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-user-group,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-eye,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-clock,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-arrow-trend-up {
  display: flex;
  padding: 13px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-user-group,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-user-group,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-user-group,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-user-group {
  color: #51a2ff;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-eye,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-eye,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-eye,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-eye {
  color: #c27aff;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-clock,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-clock,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-clock,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-clock {
  color: #00d3f2;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .fa-arrow-trend-up,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .fa-arrow-trend-up,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .fa-arrow-trend-up,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .fa-arrow-trend-up {
  color: #05df72;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .dashboard-card-chiffre .dashboard-card-label p,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .dashboard-card-chiffre .dashboard-card-label p,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .dashboard-card-chiffre .dashboard-card-label p,
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .dashboard-card-chiffre .dashboard-card-label p {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 {
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: linear-gradient(135deg, rgba(43, 127, 255, 0.2) 0%, rgba(43, 127, 255, 0.05) 100%);
  gap: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .dashboard-card-image .dashboard-card-chiffre h1 {
  color: #51a2ff;
  font-size: 30px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-1 .dashboard-card-image .dashboard-card-chiffre .dashboard-card-label p {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 {
  border: 1px solid rgba(194, 122, 255, 0.3);
  background: linear-gradient(135deg, rgba(173, 70, 255, 0.2) 0%, rgba(173, 70, 255, 0.05) 100%);
  gap: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .dashboard-card-image .dashboard-card-chiffre {
  color: #c27aff;
  font-size: 30px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-2 .dashboard-card-image .dashboard-card-chiffre .dashboard-card-label p {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 {
  border: 1px solid rgba(0, 211, 242, 0.3);
  background: linear-gradient(135deg, rgba(0, 184, 219, 0.2) 0%, rgba(0, 184, 219, 0.05) 100%);
  gap: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .dashboard-card-image .dashboard-card-chiffre {
  color: #00d3f2;
  font-size: 30px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-3 .dashboard-card-image .dashboard-card-chiffre .dashboard-card-label p {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 {
  border: 1px solid rgba(5, 223, 114, 0.3);
  background: linear-gradient(135deg, rgba(0, 201, 80, 0.2) 0%, rgba(0, 201, 80, 0.05) 100%);
  gap: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .dashboard-card-image .dashboard-card-chiffre {
  color: #05df72;
  font-size: 30px;
}
html body #dashboard-body #monitoring-container .dashboard-card #dashboard-card-4 .dashboard-card-image .dashboard-card-chiffre .dashboard-card-label p {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 24px;
  box-sizing: border-box;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 33px 33px 1px 33px;
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  height: 496px;
  gap: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin-bottom: 20px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-titre .fa-wave-square {
  color: #51a2ff;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-temps-de-chargement,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-disponibilité,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-utilisation-cpu,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-stockage-utilisé {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-temps-de-chargement .fa-bolt-lightning,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-temps-de-chargement .fa-server,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-temps-de-chargement .fa-microchip,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-temps-de-chargement .fa-hard-drive,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-disponibilité .fa-bolt-lightning,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-disponibilité .fa-server,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-disponibilité .fa-microchip,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-disponibilité .fa-hard-drive,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-utilisation-cpu .fa-bolt-lightning,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-utilisation-cpu .fa-server,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-utilisation-cpu .fa-microchip,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-utilisation-cpu .fa-hard-drive,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-stockage-utilisé .fa-bolt-lightning,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-stockage-utilisé .fa-server,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-stockage-utilisé .fa-microchip,
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-performance-du-site .performance-stockage-utilisé .fa-hard-drive {
  color: #a3a3a3;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 33px 33px 1px 33px;
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  height: 496px;
  gap: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin-bottom: 20px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-titre .fa-clock {
  color: #00d3f2;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-card-default {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  gap: 12px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-card-default .activité-informations-icon {
  display: flex;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-card-default .activité-informations-icon .fa-globe {
  color: #a3a3a3;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-card-default .activité-informations {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 4px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-card-default .activité-informations .activité-informations-description {
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 20px;
}
html body #dashboard-body #monitoring-container .dashboard-perf-et-activité .dashboard-activité-récente .activité-card-default .activité-informations .activité-temps-passé {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 16px;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  color: rgb(255, 255, 255);
  gap: 24px;
  margin-bottom: 48px;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications {
  display: flex;
  flex-direction: column;
  width: 70%;
  height: 410px;
  padding: 33px 33px 1px 33px;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications .dernières-modifications-titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications .dernières-modifications-titre .fa-pencil {
  color: #a3a3a3;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications .dernières-modifications-default {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  width: 95%;
  height: 60px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications .dernières-modifications-default .dernières-modifications-default-status-et-descriptions {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 12px;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications .dernières-modifications-default .dernières-modifications-default-status-et-descriptions .dernières-modifications-default-status {
  display: flex;
  width: 61px;
  height: 26px;
  padding: 4px 8px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: rgba(43, 127, 255, 0.2);
  color: #51a2ff;
  font-size: 12px;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications .dernières-modifications-default .dernières-modifications-default-status-et-descriptions .dernières-modifications-default-description {
  display: flex;
  flex-direction: row;
  color: rgb(255, 255, 255);
  align-items: center;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .stat-dernières-modifications .dernières-modifications-default .dernières-modifications-default-temps-passé {
  display: flex;
  justify-content: end;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  height: 410px;
  padding: 33px 33px 1px 33px;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-entrées-titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-entrées-titre .fa-database {
  color: #05df72;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-entrées-totales {
  display: flex;
  width: 100%;
  height: 90px;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 17px;
  justify-content: center;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-entrées-totales .totales-titre {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: normal;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-dernière-sauvegarde {
  display: flex;
  width: 100%;
  height: 90px;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 17px;
  justify-content: center;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-dernière-sauvegarde .sauvegarde-titre {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: normal;
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-taille {
  display: flex;
  width: 100%;
  height: 90px;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 17px;
  justify-content: center;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #monitoring-container .dashboard-stat-et-bdd .bdd-base-de-donnée .base-de-donnée-taille .taille-titre {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: normal;
}
html body #dashboard-body #messages-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
html body #dashboard-body #messages-container #messages-container-titre {
  display: flex;
  flex-direction: column;
}
html body #dashboard-body #messages-container .messages {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 186px;
  padding: 49px;
  gap: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #messages-container .messages .fa-message {
  color: #9e9e9e;
  justify-content: center;
  align-items: center;
}
html body #dashboard-body #messages-container .messages #messages-notfound {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 24px;
}
html body #dashboard-body #messages-container .messages .messages-details {
  display: none;
}
html body #dashboard-body #messages-container .messages .messages-details .fa-message {
  justify-content: center;
  align-items: center;
}
html body #dashboard-body #messages-container .has-messages {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  border-radius: 16px;
  box-sizing: border-box;
}
html body #dashboard-body #messages-container .has-messages #messages-icon,
html body #dashboard-body #messages-container .has-messages #messages-notfound {
  display: none;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card {
  display: flex;
  width: 510px;
  height: 150px;
  padding: 25px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 16px;
  box-sizing: border-box;
  gap: 8px;
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: rgba(43, 127, 255, 0.1);
  transition: border 0.2s ease-in;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card .messages-titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 16px;
  gap: 8px;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card .messages-titre .messages-nom {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card .messages-titre .messages-new {
  display: flex;
  width: 42.453px;
  height: 18px;
  padding: 0 8px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #d4183d;
  color: rgb(255, 255, 255);
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card .messages-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card .messages-content .messages-sujet {
  color: #51a2ff;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card .messages-content .messages-contenu {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card .messages-content .messages-temps {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-style: normal;
  line-height: 16px;
}
html body #dashboard-body #messages-container .has-messages .messages-card-section .messages-card:hover {
  border: 1px solid rgba(81, 162, 255, 0.75);
  cursor: pointer;
}
html body #dashboard-body #messages-container .has-messages .messages-details {
  width: 100%;
  padding: 33px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  gap: 21px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #messages-container .has-messages .messages-details .messages-icon {
  height: 48px;
  width: 48px;
}
html body #dashboard-body #messages-container .has-messages .messages-details .messages-notfound {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 24px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis {
  width: 100%;
  padding: 33px;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 16px;
  gap: 21px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  color: rgb(255, 255, 255);
  gap: 16px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-sujet {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-nom-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-nom-content svg path {
  stroke: white;
  stroke-opacity: 0.6;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-nom-content .messages-nom-p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-email-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-email-content svg path {
  stroke: white;
  stroke-opacity: 0.6;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-email-content .messages-email {
  color: #51a2ff;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-time-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-time-content svg path {
  stroke: white;
  stroke-opacity: 0.4;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-time-content .messages-temps {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-style: normal;
  line-height: 16px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-contenu {
  display: flex;
  height: 100%;
  padding: 17px;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-content .messages-contenu .messages-contenu-p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 12px;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-actions .messages-reponse {
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(81, 162, 255, 0.5);
  background: rgba(43, 127, 255, 0.2);
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-actions .messages-reponse svg path {
  stroke: white;
  stroke-opacity: 1;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-actions .messages-reponse .messages-reponse-p {
  color: rgb(255, 255, 255);
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-actions .messages-supprimer {
  display: flex;
  width: 40px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #d4183d;
}
html body #dashboard-body #messages-container .has-messages .messages-details-remplis .messages-actions .messages-supprimer svg path {
  stroke: white;
  stroke-opacity: 1;
}
html body #about-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  align-items: center;
  gap: 32px;
  padding: 92px 0;
}
html body #about-body #back-to-index {
  width: 90%;
  transition: all 300ms ease-in-out;
}
html body #about-body #back-to-index a {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  transition: all 300ms ease-in-out;
}
html body #about-body #back-to-index a .fa-arrow-left {
  color: rgba(255, 255, 255, 0.4);
  transition: all 300ms ease-in-out;
}
html body #about-body #back-to-index:hover a {
  color: rgb(255, 255, 255);
}
html body #about-body #back-to-index:hover a .fa-arrow-left {
  transform: translateX(-5px);
  color: rgb(255, 255, 255);
}
html body #about-body #main-content {
  display: flex;
  width: 70%;
  height: 100%;
  flex-direction: row;
  margin: 0 auto;
  justify-content: center;
  gap: 32px;
}
html body #about-body #main-content #left-container {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 20px;
}
html body #about-body #main-content #left-container #profile-left-container {
  display: flex;
  width: 288px;
  height: 531.25px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 25px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
html body #about-body #main-content #left-container #profile-left-container #pp-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 22px;
  width: 96px;
  height: 96px;
}
html body #about-body #main-content #left-container #profile-left-container #pp-profile svg path {
  height: 48px;
  width: 48px;
  background: #000;
  padding: 22px;
  margin: 22px;
}
html body #about-body #main-content #left-container #profile-left-container h1 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
html body #about-body #main-content #left-container #profile-left-container p {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
}
html body #about-body #main-content #left-container #profile-left-container #localisation {
  display: flex;
  width: 238px;
  height: 16px;
  padding-right: 0.016px;
  justify-content: center;
  gap: 8px;
}
html body #about-body #main-content #left-container #profile-left-container #localisation .fa-compass {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #left-container #profile-left-container #localisation p {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #left-container #profile-left-container #links {
  display: flex;
  width: 238px;
  flex-direction: column;
  gap: 8px;
}
html body #about-body #main-content #left-container #profile-left-container #links #github-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
html body #about-body #main-content #left-container #profile-left-container #links #github-links .fa-github {
  color: rgba(255, 255, 255, 0.3019607843);
}
html body #about-body #main-content #left-container #profile-left-container #links #github-links a {
  color: rgba(255, 255, 255, 0.5490196078);
  text-decoration: none;
}
html body #about-body #main-content #left-container #profile-left-container #links #linkedin-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
html body #about-body #main-content #left-container #profile-left-container #links #linkedin-links .fa-linkedin-in {
  color: rgba(255, 255, 255, 0.3019607843);
}
html body #about-body #main-content #left-container #profile-left-container #links #linkedin-links a {
  color: rgba(255, 255, 255, 0.5490196078);
  text-decoration: none;
}
html body #about-body #main-content #left-container #profile-left-container #links #contact-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
html body #about-body #main-content #left-container #profile-left-container #links #contact-links .fa-envelope {
  color: rgba(255, 255, 255, 0.3019607843);
}
html body #about-body #main-content #left-container #profile-left-container #links #contact-links a {
  color: rgba(255, 255, 255, 0.5490196078);
  text-decoration: none;
}
html body #about-body #main-content #left-container #profile-left-container #line {
  display: flex;
  width: 238px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html body #about-body #main-content #left-container #profile-left-container #connexion-admin {
  display: flex;
  padding: 11px 49.578px 11px 50.422px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
  text-decoration: none;
}
html body #about-body #main-content #left-container #profile-left-container #connexion-admin .fa-lock {
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}
html body #about-body #main-content #left-container #profile-left-container #connexion-admin p {
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container {
  display: flex;
  padding: 21px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
html body #about-body #main-content #left-container #stat-left-container h1 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}
html body #about-body #main-content #left-container #stat-left-container #statis {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 12px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #experience-years,
html body #about-body #main-content #left-container #stat-left-container #statis #formations,
html body #about-body #main-content #left-container #stat-left-container #statis #logiciels,
html body #about-body #main-content #left-container #stat-left-container #statis #projets {
  width: 100%;
}
html body #about-body #main-content #left-container #stat-left-container #statis #experience-years {
  display: flex;
  height: 20px;
  justify-content: space-between;
  align-items: center;
}
html body #about-body #main-content #left-container #stat-left-container #statis #experience-years p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #experience-years .colored {
  color: #00d3f3;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #formations {
  display: flex;
  height: 20px;
  justify-content: space-between;
  align-items: center;
}
html body #about-body #main-content #left-container #stat-left-container #statis #formations p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #formations .colored {
  color: #c27aff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #logiciels {
  display: flex;
  height: 20px;
  justify-content: space-between;
  align-items: center;
}
html body #about-body #main-content #left-container #stat-left-container #statis #logiciels p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #logiciels .colored {
  color: #05df72;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #projets {
  display: flex;
  height: 20px;
  justify-content: space-between;
  align-items: center;
}
html body #about-body #main-content #left-container #stat-left-container #statis #projets p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #left-container #stat-left-container #statis #projets .colored {
  color: #51a2ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
html body #about-body #main-content #left-container #organisation-left-container {
  display: flex;
  padding: 21px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
html body #about-body #main-content #left-container #organisation-left-container h1 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 12px 0 0 0;
  gap: 28px;
  width: 100%;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #presoa {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #presoa #left-presoa {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #presoa #left-presoa .fa-briefcase-medical {
  display: flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #05df72;
  border: 1px solid rgba(5, 223, 114, 0.3);
  background: rgba(0, 201, 80, 0.2);
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #presoa #left-presoa #subtitle-presoa {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #presoa #left-presoa #subtitle-presoa p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #presoa #link-presoa .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.33);
  transition: all 300ms ease;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #presoa #link-presoa .fa-arrow-up-right-from-square:hover {
  color: rgba(255, 255, 255, 0.9);
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #promeo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #promeo #left-promeo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #promeo #left-promeo .fa-graduation-cap {
  display: flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #51a2ff;
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: rgba(43, 127, 255, 0.2);
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #promeo #left-promeo #subtitle-promeo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #promeo #left-promeo #subtitle-promeo p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #promeo #link-promeo .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.33);
  transition: all 300ms ease;
}
html body #about-body #main-content #left-container #organisation-left-container #ecole-entreprise #promeo #link-promeo .fa-arrow-up-right-from-square:hover {
  color: rgba(255, 255, 255, 0.8);
}
html body #about-body #main-content #left-container #langue-left-container {
  display: flex;
  padding: 21px;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
html body #about-body #main-content #left-container #langue-left-container h1 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}
html body #about-body #main-content #left-container #langue-left-container #francais,
html body #about-body #main-content #left-container #langue-left-container #anglais {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
html body #about-body #main-content #left-container #langue-left-container #francais p,
html body #about-body #main-content #left-container #langue-left-container #anglais p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #left-container #langue-left-container #francais #niveau,
html body #about-body #main-content #left-container #langue-left-container #anglais #niveau {
  color: rgba(255, 255, 255, 0.4);
  line-height: 20px;
  font-size: 12px;
}
html body #about-body #main-content #right-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
html body #about-body #main-content #right-container #readme-right-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 25px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 300ms ease;
}
html body #about-body #main-content #right-container #readme-right-container #title {
  display: flex;
  height: 16px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  align-self: stretch;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #readme-right-container #title .fa-book-open {
  color: rgba(255, 255, 255, 0.3);
}
html body #about-body #main-content #right-container #readme-right-container #title p {
  color: rgba(255, 255, 255, 0.3);
}
html body #about-body #main-content #right-container #readme-right-container #title p span {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Space Grotesk";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #readme-right-container #content {
  display: flex;
  justify-content: space-between;
  height: 228px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  align-self: stretch;
}
html body #about-body #main-content #right-container #readme-right-container #content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
html body #about-body #main-content #right-container #readme-right-container:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}
html body #about-body #main-content #right-container #nav-bar-right-container {
  display: flex;
  height: 48px;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
html body #about-body #main-content #right-container #nav-bar-right-container nav {
  margin: auto 0;
  width: 100%;
  padding: 4px 0;
  justify-content: center;
  align-items: center;
}
html body #about-body #main-content #right-container #nav-bar-right-container nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
html body #about-body #main-content #right-container #nav-bar-right-container nav ul #active-button {
  display: flex;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}
html body #about-body #main-content #right-container #nav-bar-right-container nav ul li {
  display: flex;
  align-items: center;
  color: #9e9e9e;
  padding: 10px 57px 10px 57px;
}
html body #about-body #main-content #right-container #activite-github-right-container {
  padding: 25px;
  height: 245px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
html body #about-body #main-content #right-container #activite-github-right-container #title-activity {
  display: flex;
  margin-bottom: 15px;
  height: 20px;
  justify-content: space-between;
  align-items: center;
}
html body #about-body #main-content #right-container #activite-github-right-container #title-activity p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container {
  display: flex;
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .week {
  display: flex;
  flex-direction: column;
  width: 734px;
  height: 131px;
  align-items: flex-start;
  gap: 4px;
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .week .day[data-level="0"] {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .week .day[data-level="1"] {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 57, 142, 0.6);
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .week .day[data-level="2"] {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(21, 93, 252, 0.7);
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .week .day[data-level="3"] {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(43, 127, 255, 0.8);
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .week .day[data-level="4"] {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #51a2ff;
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .temp-week {
  display: flex;
  flex-direction: column;
  width: 734px;
  height: 131px;
  align-items: flex-start;
  gap: 4px;
}
html body #about-body #main-content #right-container #activite-github-right-container .graph-container .temp-week .day[data-level="0"] {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
@keyframes loading-github {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
html body #about-body #main-content #right-container #activite-github-right-container #legend {
  display: flex;
  flex-direction: row;
  margin-top: 35px;
  gap: 8px;
  justify-content: end;
  align-items: center;
}
html body #about-body #main-content #right-container #activite-github-right-container #legend p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot-2,
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot-1,
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot0,
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot1,
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot2 {
  width: 12px;
  height: 12px;
}
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot-2 {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot-1 {
  border-radius: 6px;
  background: rgba(28, 57, 142, 0.6);
}
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot0 {
  border-radius: 6px;
  background: rgba(21, 93, 252, 0.7);
}
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot1 {
  border-radius: 6px;
  background: rgba(43, 127, 255, 0.8);
}
html body #about-body #main-content #right-container #activite-github-right-container #legend .dot2 {
  border-radius: 6px;
  background: #51a2ff;
}
html body #about-body #main-content #right-container #activite-github-right-container #legend p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #epingle-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #about-body #main-content #right-container #epingle-title .fa-star {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #epingle-title p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #projet-right-container {
  display: grid;
  row-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1,
html body #about-body #main-content #right-container #projet-right-container #card-project-2,
html body #about-body #main-content #right-container #projet-right-container #card-project-3,
html body #about-body #main-content #right-container #projet-right-container #card-project-4,
html body #about-body #main-content #right-container #projet-right-container #card-project-5,
html body #about-body #main-content #right-container #projet-right-container #card-project-6 {
  display: flex;
  gap: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 {
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: linear-gradient(135deg, rgba(43, 127, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #up-of-card {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #up-of-card #title-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #up-of-card #title-card .fa-server {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #up-of-card #title-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #up-of-card #title-card p span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #up-of-card .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #description {
  width: 100%;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #description p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 19.5px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #language-used {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #language-used #dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #51a2ff;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-1 #language-used p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 {
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(194, 122, 255, 0.3);
  background: linear-gradient(135deg, rgba(173, 70, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #up-of-card {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #up-of-card #title-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #up-of-card #title-card .fa-shield {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #up-of-card #title-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #up-of-card #title-card p span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #up-of-card .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #description {
  width: 100%;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #description p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 19.5px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #language-used {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #language-used #dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c27aff;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-2 #language-used p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 {
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(5, 223, 114, 0.3);
  background: linear-gradient(135deg, rgba(0, 201, 80, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #up-of-card {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #up-of-card #title-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #up-of-card #title-card .fa-suitcase {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #up-of-card #title-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #up-of-card #title-card p span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #up-of-card .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #description {
  width: 100%;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #description p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 19.5px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #language-used {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #language-used #dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #05df72;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-3 #language-used p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 {
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 211, 243, 0.3);
  background: linear-gradient(135deg, rgba(0, 184, 219, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #up-of-card {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #up-of-card #title-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #up-of-card #title-card .fa-code {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #up-of-card #title-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #up-of-card #title-card p span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #up-of-card .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #description {
  width: 100%;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #description p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 19.5px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #language-used {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #language-used #dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #00d3f3;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-4 #language-used p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 {
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 137, 4, 0.3);
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #up-of-card {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #up-of-card #title-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #up-of-card #title-card .fa-microchip {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #up-of-card #title-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #up-of-card #title-card p span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #up-of-card .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #description {
  width: 100%;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #description p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 19.5px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #language-used {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #language-used #dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff8904;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-5 #language-used p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 {
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(251, 100, 182, 0.3);
  background: linear-gradient(135deg, rgba(246, 51, 154, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #up-of-card {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #up-of-card #title-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #up-of-card #title-card .fa-palette {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #up-of-card #title-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #up-of-card #title-card p span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #up-of-card .fa-arrow-up-right-from-square {
  color: rgba(255, 255, 255, 0.4);
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #description {
  width: 100%;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #description p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 19.5px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #language-used {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #language-used #dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fb64b6;
}
html body #about-body #main-content #right-container #projet-right-container #card-project-6 #language-used p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
html body #formation-body .formation-content {
  display: flex;
  justify-content: center;
}
html body #formation-body .formation-content .formation-title {
  display: flex;
  width: 1280px;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
}
html body #formation-body .formation-content .formation-title .promeo-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
html body #formation-body .formation-content .formation-title .promeo-img .logo {
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(81, 162, 255, 0.3);
  background: rgba(43, 127, 255, 0.2);
}
html body #formation-body .formation-content .formation-title .promeo-img .logo .fa-graduation-cap {
  color: #51a2ff;
}
html body #formation-body .formation-content .formation-title .promeo-img .txt p {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 1.8px;
}
html body #formation-body .formation-content .formation-title .promeo-img .txt .centre {
  color: #8ec5ff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 1.2px;
}
html body #formation-body .formation-content .formation-title .promeo-desc {
  display: flex;
  height: 326px;
  padding: 49px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
html body #formation-body .formation-content .formation-title .promeo-desc .presentation {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
html body #formation-body .formation-content .formation-title .promeo-desc .presentation .fa-book-open {
  color: #51a2ff;
}
html body #formation-body .formation-content .formation-title .promeo-desc .presentation h1 {
  color: #fff;
}
html body #formation-body .formation-content .formation-title .promeo-desc p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Space Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
html body footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 32px;
}
html body footer p {
  color: rgb(255, 255, 255);
}
html body footer p a {
  color: rgb(255, 255, 255);
}/*# sourceMappingURL=style.css.map */