* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary-50: #e6eaff;
  --primary-500: #042cff;
  --primary-700: #031fb5;
  --primary-800: #02188c;
  --primary-900: #02126b;
  --secondary-500: #f4ff52;
  --grey-100: #f0f1f3;
  --grey-300: #e0e1e6;
  --grey-400: #d9dbe1;
  --grey-500: #d0d2d9;
  --grey-600: #bdbfc5;
  --grey-700: #94959a;
  --grey-800: #727477;
  --grey-900: #57585b;
  --primary-content: #00041a;
  --white: #fafbff;
  --secondary-content: #52587a;
  --green: #7dcd85;
}

/* Display none pour ordi */

.infographie,
.deskMenu {
  display: none;
}

/* Define */

@font-face {
  font-family: "Eudoxus";
  src: url("../css/fonts/EudoxusSansGX.ttf") format("truetype");
}

@font-face {
  font-family: "Base Neue SuperCondensed";
  src: url("../css/fonts/BaseNeueTrial-SuperCondExtBd.ttf") format("truetype");
}

@font-face {
  font-family: "Base Neue Condensed";
  src: url("../css/fonts/BaseNeueTrial-CondensedBlack.ttf") format("truetype");
}

@font-face {
  font-family: "Base Neue";
  src: url("../css/fonts/BaseNeueTrial-Bold.ttf") format("truetype");
}

h1 {
  font-family: "Base Neue", "Eudoxus";
  line-height: 120%;
  font-size: 48px;
  text-transform: uppercase;
}

h2 {
  font-family: "Base Neue Condensed", "Eudoxus";
  line-height: 100%;
  font-size: 56px;
  letter-spacing: 1px;
}

h3 {
  font-family: "Base Neue Condensed", "Eudoxus";
  line-height: 150%;
  font-size: 24px;
  color: var(--primary-1000);
}

h4 {
  font-family: "Base Neue", "Eudoxus";
  line-height: 130%;
  font-size: 20px;
  color: var(--primary-1000);
}

p {
  font-family: "Eudoxus";
  line-height: 150%;
  font-size: 14px;
  color: var(--grey-900);
}

li {
  font-family: "Eudoxus";
  line-height: 130%;
  font-size: 14px;
  color: var(--primary-500);
}

a,
button {
  font-family: "Eudoxus";
  line-height: 100%;
  font-size: 16px;
  padding: 13px 16px;
  border-radius: 24px;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
}

.caption-large {
  font-family: "Eudoxus";
  line-height: 120%;
  font-size: 16px;
}

.caption-small {
  font-family: "Eudoxus";
  line-height: 130%;
  font-size: 12px;
}

label {
  font-family: "Eudoxus";
  font-size: 14px;
  line-height: 100%;
}

.placeholder,
input,
textarea {
  font-family: "Eudoxus";
  line-height: 130%;
  font-size: 14px;
}

.big-number {
  font-family: "Base Neue", "Eudoxus";
  line-height: 100%;
  font-size: 80px;
  font-weight: 800;
  color: var(--primary-500);
}

.redirect-projet {
  color: var(--primary-content);
  cursor: pointer;
}

header {
  display: block;
}

.logo {
  border-radius: 22px;
  overflow: hidden;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px;
  background-color: var(--grey-100);
  position: fixed;
  top: 8px;
  left: 8px;
  border-radius: 64px;
  width: calc(100% - 16px);
  z-index: 11;
  border-bottom: 4px solid var(--grey-400);
}

.menu a {
  padding: 0;
}

.container-burger {
  display: flex;
  gap: 8px;
  align-items: center;
}

.disponible {
  display: none;
  gap: 8px;
  background-color: var(--grey-100);
  border-bottom: 4px solid var(--grey-400);
  border-radius: 64px;
  align-items: center;
  width: fit-content;
  padding: 12px 16px;
  z-index: 10;
}

.disponible p {
  font-size: 16px;
  font-family: "Eudoxus";
  font-weight: 700;
  color: var(--primary-content);
  text-wrap: nowrap;
}

.disponible-mobile {
  display: flex;
  padding: 8px 12px;
}

.disponible-mobile p {
  font-size: 14px;
}

.point-container {
  position: relative;
  width: 8px;
  height: 8px;
}

.point {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  z-index: 2;
}

.radar-effect {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 255, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: radar 2s infinite;
}

@keyframes radar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-500);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle .bar {
  width: 24px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  transform-origin: center;
}

.menu-toggle .bar:nth-child(1) {
  transform: translateY(-8px);
}

.menu-toggle .bar:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle .bar:nth-child(3) {
  transform: translateY(8px);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

#menu.active {
  display: flex;
}

#burger-menu {
  position: fixed;
  top: 82px;
  right: -100%;
  z-index: 999;
  transition: 0.3s ease-in;
}

#burger-menu.active {
  right: 8px;
  transition: 0.3s ease-out;
}

.ul-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: fit-content;
  align-items: center;
  background-color: var(--white);
  padding: 8px 40px;
  border-radius: 24px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}

.ul-menu li {
  text-decoration: none;
  list-style: none;
}

.ul-menu li a {
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--primary-500);
  font-weight: 700;
  min-height: 44px;
}

.news-menu-item.underline {
  border-bottom: solid 2px var(--primary-500);
}

body {
  background-color: var(--white);
}

.div {
  padding: 80px 24px;
}

.div-blue {
  background-color: var(--primary-500);
}

.cta {
  display: flex;
  gap: 4px;
  height: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
  border-top: 2px solid var(--primary-content);
  border-right: 2px solid var(--primary-content);
  border-bottom: 6px solid var(--primary-content);
  border-left: 2px solid var(--primary-content);
  padding: 10px 16px !important;
  color: var(--primary-content);
  font-weight: 700;
  font-size: 16px;
  text-wrap: nowrap;
}

.cta:hover {
  border-bottom: 8px solid var(--primary-content);
  margin-top: -2px;
}

.cta:active {
  border-bottom: 2px solid var(--primary-content);
  margin-top: 4px;
}

.cta-primary {
  background: var(--secondary, #f4ff52);
}

.cta-secondary {
  background: transparent;
}

.cta-yellow {
  border-color: var(--secondary-500);
  color: var(--secondary-500);
}

.cta-menu {
  display: none;
}

/* Hero */

.folle {
  position: absolute;
  top: 45px;
  left: -45px;
  width: 320px;
  transform: rotate(-20deg);
  opacity: 0.6;
}

.pond {
  display: none;
  opacity: 0.6;
}

.hero {
  background-color: var(--primary-500);
  height: 100vh;
  position: relative;
}

.hero-main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  height: 100vh;
}

.hero h1 {
  color: var(--white);
}

.hero .caption-large {
  color: var(--white);
  line-height: 150%;
}

.social-proof {
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 24px;
  left: 24px;
  gap: 8px;
}

.social-proof-img {
  display: flex;
  align-items: center;
  width: 84px;
}

.social-proof-img img {
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 22px;
  border: 2px solid var(--primary-500);
}

.social-proof-img img:nth-child(2) {
  transform: translateX(-24px);
}

.social-proof-img img:nth-child(3) {
  transform: translateX(-48px);
}

.testimonials-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 400px;
  overflow: hidden;
  height: auto;
}

.testimonial {
  display: none;
  width: 100%;
  text-align: center;
}

.testimonial p {
  color: var(--grey-300);
}

.testimonial.active {
  display: block;
}

/* Projets */

.projet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.titre-projet {
  position: relative;
}

.titre-projet h2 {
  text-align: center;
}

span {
  color: var(--primary-500);
}

.titre-projet p {
  position: absolute;
  top: -16px;
  right: 40px;
  transform: rotate(8deg);
  color: var(--grey-700);
}

.projets {
  border-radius: 24px;
  height: 480px;
  padding: 24px;
  overflow: hidden;
  max-width: 1140px;
  margin-bottom: 40px;
  position: relative;
  background-image: linear-gradient(-135deg, var(--grey-100) 0%, var(--grey-100) 50%, var(--grey-100) 100%);
  z-index: 1;
}

.projets::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-135deg, var(--primary-500) 0%, rgba(4, 44, 255, 0) 45%, var(--grey-100) 100%);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}

.projets:hover::before {
  opacity: 0.8;
}

.projets-content {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.text-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-name {
  display: flex;
  gap: 4px;
  align-items: center;
}

.logo-name h3 {
  line-height: 100%;
}

.cta-desktop {
  display: none;
}

.projets-mockup {
  padding: 24px 24px 0px 24px;
}

.card {
  display: none;
  transition: 0.3s ease-in-out;
}

.desktop {
  width: 100%;
  padding: 8px;
  border-radius: 16px;
  transform: rotate(2deg);
  background-color: var(--white);
  transition: 0.3s ease-in-out;
}

.desktop img {
  width: fit-content;
  width: 100%;
  border-radius: 8px;
  min-height: 300px;
  object-fit: cover;
  max-height: 550px;
}

/* services */

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titre-white {
  color: var(--white);
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
  max-width: 900px;
}

.card-services {
  background-color: var(--white);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  gap: 16px;
  padding: 24px;
  justify-content: space-between;
}

.card-services-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-services h3 {
  text-align: center;
}

.card-services img {
  width: 240px;
  aspect-ratio: 1/1;
}

/* Qui suis je ? */

.moi {
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin-top: 24px;
}

.moi-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.moi-content {
  background-color: var(--grey-100);
  border-radius: 24px;
  padding: 24px;
}

.moi-vacances {
  padding: 8px;
  background-color: var(--white);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0;
  width: fit-content;
  max-width: 85%;
}

.moi-vacances img,
.moi-content-first img {
  max-width: 320px;
  aspect-ratio: 1/1;
  width: 100%;
}

.vacances {
  width: 100%;
  padding: 16px;
  text-align: center;
}

.moi-content-first {
  border-radius: 24px 24px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moi-content-secondary {
  border-radius: 0 0 24px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Témoignages */

.temoignages {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.temoignages-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.card-temoignages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--white);
  padding: 16px;
  align-self: stretch;
  box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  width: 100%;
}

.temoignages-author {
  display: flex;
  gap: 8px;
  padding: 8px 8px 16px 8px;
  border-bottom: 1px solid var(--grey-500);
}

.temoignages-author img {
  width: 56px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background-color: var(--primary-500);
  object-fit: cover;
}

.temoignages-author-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.temoignages-author-content h4 {
  color: var(--primary-500);
}

.temoignages-author-content p {
  color: var(--grey-700);
}

/* Contact */

.contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gardons-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gardons-contact ul div {
  display: flex;
  gap: 8px;
  align-items: center;
}

li {
  list-style: none;
  color: var(--grey-900);
}

.confiance-container {
  margin-top: 24px;
}

.confiance-container h4 {
  margin-bottom: 8px;
}

.confiance {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.clients {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--grey-100);
  border-radius: 16px;
  padding: 8px;
  width: fit-content;
}

.clients div p {
  white-space: nowrap;
}

.clients div p:first-of-type {
  font-weight: 700;
}

.clients img {
  width: 44px;
  aspect-ratio: 1/1;
}

form {
  border-radius: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

input,
textarea {
  border-radius: 8px;
  border: 1px solid var(--grey-600);
  min-height: 44px;
  background-color: transparent;
  width: 100%;
  margin-bottom: 8px;
  padding: 8px;
}

textarea {
  margin-bottom: 20px;
}

/* FAQ */

.faq-content {
  margin-top: 24px;
}

.questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.questions-container {
  display: flex;
  flex-direction: column;
}

.question-item {
  display: flex;
  flex-direction: column;
}

.question-item:hover {
  background: var(--primary-700);
  border-radius: 8px;
}

.question-item.active {
  background: linear-gradient(180deg, var(--primary-800) 0%, var(--primary-900) 100%);
  box-shadow: 0px 0px 24px 0px var(--primary-900);
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
}

.question-item.active h4 {
  padding: 0;
  color: var(--white);
}

.question {
  padding: 16px 8px;
  color: var(--grey-300);
  cursor: pointer;
}

.reponse-mobile,
.reponse-desktop {
  display: none;
}

.reponse-mobile {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reponse-mobile.active {
  display: flex;
}

.reponse-mobile img {
  width: 160px;
  aspect-ratio: 1/1;
}

.reponse-desktop.active {
  display: flex;
  flex-direction: row;
  padding: 48px;
  background: linear-gradient(180deg, var(--primary-800) 0%, var(--primary-900) 100%);
  box-shadow: 0px 0px 24px 0px var(--primary-900);
  border-radius: 24px;
  gap: 24px;
}

.reponse-mobile p,
.reponse-desktop p {
  color: var(--white);
}

.reponse h4,
.reponse-mobile h4,
.reponse-desktop h4 {
  width: 100%;
  text-align: left;
  color: var(--white);
}

.reponse p {
  color: var(--white);
}

.reponse div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reponse div h4 {
  color: var(--white);
}

.reponse div p {
  color: var(--grey-500);
}

.reponse img {
  width: 160px;
  aspect-ratio: 1/1;
}

/* footer */

footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

footer div {
  border-radius: 24px;
  background-color: var(--primary-50);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.calendly{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 16px;
}

.calendly h4{
  text-align: center;
}

.logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 1/1;
  background-color: var(--primary-800);
  max-height: 320px;
}

.logo-footer img {
  width: 180px;
}

.logo-footer h4 {
  color: var(--white);
}

.role {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.job-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-badge {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reseaux-sociaux {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background-color: transparent;
  flex-direction: row;
  flex-wrap: wrap;
}

.reseaux-sociaux div {
  aspect-ratio: 1/1;
  max-height: 320px;
  width: calc(50% - 8px);
}

.reseaux-sociaux div a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.reseaux-sociaux div a img {
  height: 100%;
  aspect-ratio: 1/1;
  max-height: 104px;
}

/* Page Projets */

.page-projets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-projets-content h2 {
  text-transform: uppercase;
}

.page-projets-header {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  flex-direction: column;
}

.page-projets-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 0 32px;
}

.card-stats {
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  background-color: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.content-stats {
  position: relative;
}

.croissance {
  position: absolute;
  color: var(--green);
  background-color: var(--primary-500);
  border: 1px solid var(--white);
  transform: rotate(5deg);
  border-radius: 4px;
  padding: 4px 8px;
  right: -70px;
  top: -12px;
  font-family: "Base Neue", "Eudoxus";
  font-size: 24px;
}

.page-projets-content img {
  width: 100px;
  aspect-ratio: 1/1;
}

.page-mockups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-mockups img {
  border-radius: 24px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

@media (min-width: 475px) {
  .titre-projet p{
      right: -48px;
  }
}

@media (min-width: 800px) {

  h2{
      font-family: "Base Neue Condensed", "Eudoxus";
  }

  .cta-mobile{
      display: none;
  }

  .cta-desktop{
      display: flex;
  }


  /* services */

  .services-container{
      flex-wrap: wrap;
      flex-direction: row;
      justify-content: space-between;
  }

  .card-services{
      width: calc(50% - 12px);
  }

  /* moi */

  .moi-container{
      display: flex;
      flex-direction: row;
      gap: 24px;
  }

  .moi-content{
      border-radius: 24px;
  }

  .moi-content-first{
      width: auto;
      align-self: stretch;
      align-items: flex-end;
      min-width: 33%;
  }
    
  .moi-content-secondary{
      width: auto;
      align-self: stretch;
      align-items: flex-end;
      min-width: 33%;
  }
  /* FAQ */

  .temoignages-container{
      flex-direction: row;
      flex-wrap: wrap;
      align-items: flex-start;
      align-content: flex-start;
      justify-content: center;
  }

  .card-temoignages{
      width: calc(33.32% - 16px);
  }

  /* Footer */

  footer{
      flex-direction: row;
      align-items: stretch;
  }

  footer div{
      flex-direction: row;
  }

  .calendly{
      flex-direction: row;
      justify-content: space-between;
  }

  .logo-footer{
      width: 400px;
  }

  .role{
      flex: 1;
      justify-content: space-between;
  }

  .page-projets-header{
      flex-direction: row;
      justify-content: space-between;
  }

  .collapse{
      max-width: 60%;
  }

  .page-mockups{
      flex-direction: row;
      flex-wrap: wrap;
  }

  .demi{
      width: calc(50% - 12px) !important;
  }

  .reseaux-sociaux{
      flex-wrap: nowrap;
  }
}

@media (min-width: 1000px) {

  .projets-mockup{
      padding: 40px 40px 0px 40px;
      display: flex;
    }

  .projets:hover > .projets-mockup > .card{
      transform: rotate(-5deg) translateY(0px);
      transition: 0.3s ease-in-out
  }

  .projets:hover > .projets-mockup > .desktop{
      transform: rotate(5deg) translateY(-12px);
      transition: 0.3s ease-in-out
  }

  .card{
      display: block;
      width: 100%;
      padding: 8px;
      border-radius: 16px;
      transform: rotate(-2deg) translateY(24px);
      background-color: var(--white);
      max-width: 320px;
  }

  .card img{
      width: fit-content;
      width: 100%;
      border-radius: 8px;
      min-height: 300px;
      object-fit: cover;
  }

  .contact{
      flex-direction: row;
  }

  .projets-content p{
      width: 60%;
  }
}
@media (min-width: 1200px) {
  #burger {
    display: none;
  }

  h1 {
    font-size: 104px;
  }

  h2 {
    font-size: 120px;
  }
  h3 {
    font-size: 40px;
  }
  h4 {
    font-size: 24px;
  }
  p {
    font-size: 16px;
  }
  a,
  button {
    font-size: 20px;
  }
  label,
  .label {
    font-size: 12px;
  }
  .caption-large {
    font-size: 20px;
  }

  .main-projets {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    align-items: center;
    margin: 0 auto;
  }

  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    position: fixed;
    z-index: 12;
    width: 100%;
  }

  .cta-menu {
    display: flex;
    z-index: 3;
  }

  .disponible {
    display: flex;
    z-index: 3;
  }

  .disponible-desk {
    opacity: 0;
    width: 24px;
    transition: opacity ease-in 0.3s;
  }

  .menu {
    position: initial;
    justify-content: center;
    width: fit-content;
  }

  .deskMenu {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    position: relative;
  }

  .deskMenu li {
    list-style: none;
  }

  .deskMenu li a {
    padding: 0;
    text-wrap: nowrap;
  }

  .news-menu-item {
    color: var(--primary-500);
    font-family: "Eudoxus";
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease-in-out;
    border-radius: 0;
    padding: 2px 0;
  }

  .news-menu-item:hover {
    color: var(--primary-700);
  }

  .container-burger {
    display: none;
  }

  .underline {
    position: absolute;
    bottom: -6px;
    height: 3px;
    background-color: var(--primary-500);
    width: 0;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
  }

  /* Hero */

  .folle {
    top: 55vh;
    left: inherit;
    right: 8vw;
    width: 440px;
    transform: rotate(10deg);
    opacity: 0.6;
  }

  .pond {
    display: block;
    position: absolute;
    left: 0;
    top: 50vh;
    width: 440px;
    aspect-ratio: 1/1;
  }

  .hero-main-content {
    max-width: 1400px;
    margin: 0 auto;
  }

  .social-proof {
    bottom: 48px;
  }

  /* Moi */

  #moi {
    max-width: 1400px;
    margin: 0 auto;
  }

  #moi h2 {
    text-align: center;
  }

  /* Contact */

  .contact {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Témoignages */

  .faq h2 {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 24px;
  }

  .temoignages-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* FAQ */

  .faq-content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .questions-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
  }

  .reponses-container {
    flex: 2;
    position: sticky;
    top: 20px;
    height: fit-content;
  }

  .reponse {
    display: none;
    padding: 48px;
  }

  .reponse-mobile.active {
    display: none;
  }

  .question-item.active {
    padding: 16px;
    border-radius: 8px;
    background-color: var(--primary-900);
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.05);
  }

  .content-reponse {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Footer */

  footer {
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .job-badge {
    flex-direction: row;
  }

  .reseaux-sociaux {
    gap: 24px;
  }

  /* Page projets */

  .page-projets {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .page-projets-header {
    width: 100%;
    padding-top: 80px;
  }

  .stats {
    max-width: 400px;
    padding: 0;
  }
}

@media (min-width: 1400px) {
  .disponible-mobile {
    display: none !important;
  }

  .disponible {
    display: flex;
    z-index: 3;
    opacity: 1;
    width: fit-content;
  }

  header {
    padding: 24px 56px;
  }

  .deskMenu {
    gap: 40px;
  }
}
