@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Noto+Emoji:wght@300;700&family=Quicksand:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
  color: #230A02;
  transition: 0.4s;
  scroll-behavior: smooth;
}

button {
  border: none;
  background: #230A02;
  padding: 0 1rem;
}
button a {
  color: #F9EDEA;
}

h1 {
  font-family: Inter;
}

body {
  background: #F9EDEA;
  overflow-x: hidden;
}

.noto {
  font-size: calc(0.5rem + 1vw);
  font-family: Noto Emoji;
  font-weight: 700;
  display: none;
}

a {
  text-decoration: none;
}

nav {
  gap: 5.6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.2rem 4.8vw;
  font-size: calc(0.5rem + 0.6vw);
}
nav .CTA {
  white-space: nowrap;
  height: 48px;
  border-radius: 0.6rem;
  cursor: pointer;
}
nav .CTA:hover {
  transform: scale(1.08);
}
nav .logo {
  height: 38px;
  cursor: pointer;
}
nav .logo:hover {
  transform: scale(1.15);
  filter: brightness(0);
}

.menu {
  height: 48px;
  flex-grow: 1;
  display: flex;
  gap: 0.4rem;
  background: #E5CFC7;
  padding: 0.4rem;
  font-weight: 500;
  border-radius: 0.6rem;
}
.menu span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 10, 2, 0.2);
  border-radius: 0.4rem;
  flex-grow: 1;
  letter-spacing: 0.04vw;
  cursor: pointer;
}
.menu span:hover {
  border: 1px solid #230A02;
}

header {
  margin: 2rem 0rem;
}
header div {
  text-align: center;
  font-family: Inter;
  font-size: 7.5vw;
  letter-spacing: 1.5vw;
  font-weight: 900;
}
header .marquee {
  margin-top: 1.4rem;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}
header .marquee span {
  font-family: Inter;
  font-size: calc(0.4rem + 1.4vw);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.2rem;
  margin-left: 0.5rem;
  animation: marquee 26s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.presentation {
  margin: auto;
  margin-top: 3rem;
  gap: 1rem;
  max-width: 1200px;
  padding: 1rem;
  background: #E5CFC7;
  border-top-left-radius: 1.4rem;
  border-top-right-radius: 1.4rem;
}
.presentation h2 {
  text-align: center;
  letter-spacing: 1vw;
  padding-top: 0.6rem;
  padding-bottom: 1.6rem;
}
.presentation div {
  display: flex;
  gap: 1rem;
}
.presentation div div {
  padding: 1rem 1.2rem;
  background: #F9EDEA;
  color: #230A02;
  border-radius: 1rem;
  min-height: calc(30px + 6vw);
  font-size: calc(0.6rem + 0.4vw);
  font-weight: 500;
  letter-spacing: 0.1vw;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presentation div img {
  border-radius: 1rem;
  width: calc(30px + 6vw);
  height: calc(30px + 6vw);
}

.diplomes {
  margin: auto;
  gap: 1rem;
  max-width: 1200px;
  padding: 1rem;
  background: #E5CFC7;
}
.diplomes h2 {
  text-align: center;
  letter-spacing: 0.5vw;
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.diplomes .container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.diplomes .container .diplome {
  position: relative;
  flex-grow: 1;
  height: calc(5vw + 90px);
  width: 20%;
  background: #F9EDEA;
  color: #230A02;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diplomes .container .diplome img, .diplomes .container .diplome div {
  text-align: center;
  position: absolute;
}
.diplomes .container .diplome img {
  height: 88%;
  opacity: 0.1;
}
.diplomes .container .diplome div {
  padding: 0.8rem 0.4rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.diplomes .container .diplome div h3 {
  font-size: calc(0.8rem + 0.8vw);
  font-weight: 800;
  letter-spacing: 0.1vw;
}
.diplomes .container .diplome div h4 {
  font-size: calc(0.4rem + 0.5vw);
  font-weight: 500;
}
.diplomes .container .diplome div h5 {
  font-size: calc(0.4rem + 0.5vw);
  font-weight: 500;
  font-style: italic;
}
.diplomes .container .diplome div h6 {
  font-size: calc(0.6rem + 0.5vw);
  font-weight: 700;
}

.experiences {
  margin: auto;
  gap: 1rem;
  max-width: 1200px;
  padding: 1rem;
  background: #E5CFC7;
}
.experiences h2 {
  text-align: center;
  letter-spacing: 0.5vw;
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.experiences .container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.experiences .container .xp {
  display: flex;
  background: #F9EDEA;
  flex-grow: 1;
  border-radius: 1rem;
  padding: 0.6rem;
  gap: calc(0.5rem + 1vw);
  align-items: center;
}
.experiences .container .xp .specs {
  display: flex;
  gap: 0.6rem;
  height: 100%;
}
.experiences .container .xp .spec {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  white-space: nowrap;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.5rem calc(0.3rem + 1vw);
  background: #230A02;
  font-weight: 700;
  font-size: calc(0.6rem + 0.6vw);
  height: 100%;
}
.experiences .container .xp .spec span {
  color: #F9EDEA;
}
.experiences .container .xp .para {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.experiences .container .xp .para h3, .experiences .container .xp .para h4 {
  margin-bottom: 0.3rem;
}
.experiences .container .xp .para h3 {
  letter-spacing: 0.1vw;
  font-size: calc(1rem + 0.4vw);
  font-weight: 800;
}
.experiences .container .xp .para h4 {
  font-size: 0.8rem;
  opacity: 0.6;
}
.experiences .container .xp .para h5 {
  line-height: 1.2;
  font-weight: 500;
  font-style: italic;
  font-size: calc(0.6rem + 0.5vw);
}

.container {
  display: flex;
  gap: 1rem;
}

.gauche {
  flex-grow: 1;
  background: #F9EDEA;
  padding: 0.8rem 0.8rem;
  border-radius: 0.9rem;
  display: flex;
  gap: 0.8rem;
}
.gauche .applis {
  flex-grow: 1;
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.gauche .applis div {
  flex-grow: 1;
  background: rgba(229, 207, 199, 0.5);
  border-radius: 0.5rem;
  padding: 0.3rem;
  display: flex;
  align-items: center;
}
.gauche .applis div span {
  margin-left: 0.5rem;
  font-size: 1rem;
}
.gauche .applis div img {
  width: 30px;
}

.milieu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.milieu .lang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  border-radius: 0.9rem;
  background: #F9EDEA;
  padding: 0.6rem;
}
.milieu .lang img {
  height: 46px;
  border-radius: 0.45rem;
}
.milieu .lang span {
  width: 100%;
  padding: 0 0.6rem;
}
.milieu .lang div {
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.05rem;
  background: rgba(229, 207, 199, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 0.45rem;
}
.milieu .pf {
  background: #F9EDEA;
  padding: 0.8rem;
  text-align: center;
  border-radius: 0.9rem;
}
.milieu .pf h3 {
  margin-top: 0.4rem;
}
.milieu .pf div {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 1rem;
}
.milieu .pf div div {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(229, 207, 199, 0.5);
  padding: 0.4rem 0.8rem;
}

.droite {
  width: 100%;
}
.droite .permis {
  background: #F9EDEA;
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.8rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.droite .permis img {
  height: 20px;
  transform: rotateY(180deg);
}

.domaines {
  margin-top: 1rem;
  background: #F9EDEA;
  padding: 0.8rem;
  text-align: center;
  border-radius: 0.8rem;
}
.domaines h3 {
  margin-bottom: 1.2rem;
  margin-top: 0.4rem;
}
.domaines .tout {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.domaines .tout .padding {
  padding: 0.8rem;
  background: rgba(229, 207, 199, 0.5);
  border-radius: 0.8rem;
  flex-grow: 1;
}
.domaines .tout .padding div {
  padding: 0.2rem;
}

footer {
  background: #230A02;
  color: #F9EDEA;
}
footer h2 {
  color: #F9EDEA;
  text-align: center;
  letter-spacing: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 1rem;
}
footer .container {
  max-width: 1200px;
  padding: 1rem;
  margin: auto;
  display: flex;
  justify-content: space-around;
}
footer .container .reseaux, footer .container .infos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .container .reseaux div, footer .container .infos div {
  background: rgba(229, 207, 199, 0.2);
  padding: 0.4rem;
  border-radius: 0.7rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
}
footer .container .reseaux div:hover, footer .container .infos div:hover {
  transform: scale(1.1);
}
footer .container .reseaux div img, footer .container .infos div img {
  width: 40px;
}
footer .container .reseaux div span, footer .container .infos div span {
  color: #F9EDEA;
  font-weight: 600;
  font-size: calc(0.5rem + 0.6vw);
  margin-right: 2vw;
}

@media (width < 600px) {
  .CTA {
    display: none;
  }
  .noto {
    display: unset;
  }
  .pc {
    display: none;
  }
  .diplomes .container .diplome {
    width: 45%;
  }
  .specs {
    flex-direction: column;
  }
}
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #F9EDEA;
}

::-webkit-scrollbar-thumb {
  background: #230A02;
  border: 5px solid #F9EDEA;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #230A02;
  border: 3px solid #F9EDEA;
}/*# sourceMappingURL=index.css.map */