@font-face {
  font-family: "Montreal Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Montreal Regular"), url("Montreal-Regular.woff") format("woff");
}

@font-face {
  font-family: "PP Neue Montreal Book";
  font-style: normal;
  font-weight: normal;
  src: local("PP Neue Montreal Book"),
    url("links/ppneuemontreal-book.woff") format("woff");
}

@font-face {
  font-family: "PP Neue Montreal Italic";
  font-style: normal;
  font-weight: normal;
  src: local("PP Neue Montreal Italic"),
    url("links/ppneuemontreal-italic.woff") format("woff");
}

*,
html {
  margin: 0;
  padding: 0;
  font: inherit;
}

body {
  background-color: black;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  padding: 25px;
  border-bottom: 1px solid white;
}

header a {
  display: none;
}

header p {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

/* menu hamburger */

/* <reset-style> ============================ */
button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}
/* ============================ */
/* <style for bg> ======== */
.background {
  border-radius: 16px;
  border: 1px solid #1a1a1a;
  background: rgba(74, 74, 74, 0.39);
  mix-blend-mode: luminosity;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* <style for menu__icon> ======== */
.menu__icon {
  width: 32px;
  height: 32px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.menu__icon span {
  width: 100%;
  height: 0.125rem;
  border-radius: 0.125rem;
  background-color: rgb(0, 122, 255);
  box-shadow: 0 0.5px 2px 0 hsla(0, 0%, 0%, 0.2);
  transition: transform 0.4s, background-color 0.4s, opacity 0.4s;
}

.menu__icon.active span:nth-child(1) {
  background-color: rgb(255, 59, 48);
  transform: translateY(11px) rotate(-45deg);
}

.menu__icon.active span:nth-child(2) {
  transform: translateX(-50%);
  opacity: 0;
}

.menu__icon.active span:nth-child(3) {
  background-color: rgb(255, 59, 48);
  transform: translateY(-11px) rotate(45deg);
}
/* fin menu hamburger */

.hamburger {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: none;
  z-index: 2;
  background-color: rgb(29, 29, 29);
  width: 100%;
  height: 300px;
  border-bottom: 1px solid grey;
}

.hamburger a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

/* faire disparaitre gsap */

.container,
.firstContainer,
.lastContainer,
.red,
.orange,
.purple {
  display: none;
}

.title--01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 70px;
}

.panda {
  width: 280px;
  object-fit: cover;
  height: 500px;
  position: relative;
  top: -105px;
  left: -15px;
  z-index: -1;
}

.img-01 {
  display: flex;
  justify-content: end;
}

h1 {
  font-family: "Montreal Regular";
  font-weight: 200;
  font-size: 42px;
  margin: 0 auto;
  color: white;
}

h2 {
  position: relative;
  left: -50px;
  font-family: "arial";
  color: white;
  font-size: 14px;
}

.container-01 {
  display: flex;
  flex-direction: column;
  height: 5vh;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px;
  box-sizing: border-box;
}

.title--01 {
  text-align: left;
  padding: 10px;
  border-radius: 8px;
  position: relative;
}

.title--01 h1 {
  margin: 0; /* Supprime la marge par défaut pour le <h1> */
  padding: 0; /* Supprime le padding par défaut pour le <h1> */
  position: relative;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1px white; /* Bordure autour du texte pour le rendre plus visible */
}

.title--01 h2 {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1px white; /* Bordure autour du texte pour le rendre plus visible */
}

.title--01 .container-01 {
  position: relative;
  z-index: 1;
}

.title-02 {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
  top: -30px;
}

.arrow {
  border: 1px solid white;
  border-radius: 15px;
  height: 70px;
}

.arrow svg {
  position: relative;
  top: -8px;
}

.arrow svg {
  animation: moveArrow 2s infinite;
}

@keyframes moveArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* texte défilant */

.marquee-rtl,
.marquee-rtl-2 {
  display: flex;
  overflow: hidden; /* Masque tout ce qui dépasse */
  width: 100%; /* S'assure que le conteneur occupe toute la largeur */
  white-space: nowrap; /* Empêche le texte de se couper */
  position: relative;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  font-family: "Montreal Regular";
  font-size: 24px;
  color: white;
  padding: 25px 0; /* Ajuste le padding pour s'adapter au texte */
}

.marquee-rtl .inner,
.marquee-rtl-2 .inner {
  display: flex;
  animation: defilement-rtl 30s linear infinite;
}

.marquee-rtl .inner div,
.marquee-rtl-2 .inner div {
  padding-right: 2em; /* Un peu d'espace pour la transition */
  white-space: nowrap; /* Pas de passage à la ligne */
}

@keyframes defilement-rtl {
  0% {
    transform: translateX(0); /* Position initiale */
  }
  100% {
    transform: translateX(-100%); /* Position finale */
  }
}

.color {
  color: #dfd2bb;
}

.aboutme {
  font-size: 57px;
  padding: 15px;
  padding-top: 55px;
  padding-bottom: 0;
  font-family: "PP Neue Montreal Book";
  color: white;
  height: auto;
}

.p-01 {
  padding: 15px;
  padding-top: 20px;
  font-family: "PP Neue Montreal Book";
  font-size: 22px;
  color: white;
  height: 420px;
}

.p-02 {
  margin-top: 50px;
}

.container-02 {
  margin-top: 50px;
}

.aboutme span {
  font-family: "PP Neue Montreal Italic";
  color: #dfd2bb;
}

.p-03 {
  font-family: "PP Neue Montreal Book";
  font-size: 24px;
  color: white;
  padding: 15px;
  padding-top: 45px;
  border-bottom: 1px solid white;
  padding-bottom: 45px;
}

.p-03 span {
  font-size: 16px;
  color: #dfd2bb;
}

h3 {
  margin-top: 25px;
  padding: 15px;
  font-family: "PP Neue Montreal Book";
  font-size: 36px;
  color: wheat;
}

.parent {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: white;
}

.parent div {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid white;
  padding: 15px;
  background-color: rgb(32, 32, 32);
  align-items: center;
  font-family: "PP Neue Montreal Book";
  margin: 0 auto;
  justify-content: space-between;
  width: 80%;
  margin-top: 40px;
}

.div1,
.div-1 {
  grid-area: 1 / 1 / 2 / 2;
}
.div2,
.div-2 {
  grid-area: 2 / 1 / 3 / 2;
}
.div3,
.div-3 {
  grid-area: 3 / 1 / 4 / 2;
}
.div4,
.div-4 {
  grid-area: 4 / 1 / 5 / 2;
}
.div5,
.div-5 {
  grid-area: 5 / 1 / 6 / 2;
}

.div1 img,
.div2 img {
  width: 40px;
  height: 50px;
}

.div3 img,
.div-3 img {
  width: 40px;
  height: 40px;
}

.div5 img,
.div-4 img,
.div-5 img,
.div-1 img,
.div4 img {
  width: 50px;
  height: 50px;
}

.div-2 img {
  width: 70px;
  height: 50px;
}

.container-03 {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  font-size: 36px;
  margin-top: 55px;
  padding: 15px;
  padding-top: 55px;
  padding-bottom: 0;
  font-family: "PP Neue Montreal Book";
  color: white;
  height: 500px;
  color: white;
}

.container-04 {
  border-bottom: 1px solid white;
  font-size: 36px;
  padding: 15px;
  padding-top: 55px;
  padding-bottom: 0;
  font-family: "PP Neue Montreal Book";
  color: white;
  height: 400px;
  color: white;
}

.container-03 span,
.container-04 span,
.container-05 span {
  color: wheat;
  font-size: 20px;
  font-weight: bold;
}

.container-03 p,
.container-04 p,
.container-05 p {
  font-size: 24px;
  margin-top: 25px;
}

.container-05 {
  border-bottom: 1px solid white;
  font-size: 36px;
  padding: 15px;
  padding-top: 55px;
  padding-bottom: 0;
  font-family: "PP Neue Montreal Book";
  color: white;
  height: 340px;
  color: white;
}

.contact {
  text-align: center;
  border-bottom: 1px solid white;
  font-size: 36px;
  padding: 15px;
  padding-top: 55px;
  padding-bottom: 0;
  font-family: "Montreal Regular";
  color: white;
  height: 200px;
  color: white;
}
.contact span {
  font-family: "PP Neue Montreal Italic";
  color: wheat;
}
.contactButton {
  background: wheat;
  color: white;
  font-family: inherit;
  padding: 0.45em;
  padding-left: 1em;
  font-size: 17px;
  font-weight: 500;
  margin: 0 auto;
  position: relative;
  top: 30px;
  border-radius: 0.9em;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em black;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3em;
}

.iconButton {
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  right: 0.3em;
  transition: all 0.3s;
}

.contactButton:hover {
  transform: translate(-0.05em, -0.05em);
  box-shadow: 0.15em 0.15em black;
}

.contactButton:active {
  transform: translate(0.05em, 0.05em);
  box-shadow: 0.05em 0.05em black;
}

.container-06 {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid white;
  font-size: 36px;
  padding: 15px;
  padding-top: 55px;
  padding-bottom: 0;
  font-family: "PP Neue Montreal Book";
  color: white;
  height: 70px;
}
.container-06 a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.container-07 {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid white;
  font-size: 20px;
  padding: 15px;
  padding-top: 55px;
  padding-bottom: 0;
  font-family: "PP Neue Montreal Book";
  color: white;
  height: 70px;
}

.footer,
.scroll-03 p {
  display: none;
}

.item,
.item1 {
  display: none;
}
.container-custom {
  display: none;
}
.lastContainer-01,
.pin-spacer {
  display: none;
}
.container {
  width: 0;
  height: 0;
}
