@media screen and (min-width: 768px) {
  nav svg {
    width: 200px;
  }

  .loader {
    /* Initialement caché */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #ffe4b2; /* Fond semi-transparent */
    z-index: -2;
    transition: opacity 0.2s ease; /* Transition de l'opacité pour le fondu */
  }

  .loader.active {
    display: flex; /* Affiche le loader */
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
  }

  .loader img {
    width: 250px; /* Taille de l'image de chargement */
    height: 250px;
    margin: 0 auto;
  }

  /* Animation CSS pour l'opacité */
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  nav .cta span {
    font-size: 30px;
  }
  nav .cta svg {
    width: 50px;
    position: relative;
    top: -2px;
  }
  .title-01 {
    font-size: 60px;
  }
  .dyna-01.active {
    z-index: 9;
    width: 10%;
    padding: 10px;
  }
  .dyna-01 {
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: wheat;
    width: 13%;
    height: 25px;
    padding: 15px;
    border-radius: 30px;
    transition: width 0.5s ease, padding 0.5s ease;
  }

  .dyna {
    display: none;
  }
  .container-01 {
    font-size: 55px;
  }
  .container-02,
  .container-03 {
    align-items: center;
    font-size: 28px;
  }
  .container-02 img,
  .container-03 img {
    width: 250px;
    height: 250px;
    object-fit: cover;
  }
  .container-04-title h1 {
    font-size: 80px;
  }
  .container-04-title p {
    font-size: 40px;
  }
  .etapes {
    font-size: 80px;
    margin-bottom: 80px;
  }
  .parent-1 {
    font-size: 30px;
  }
  .jardins {
    font-size: 80px;
    margin-top: 80px;
  }

  .container-05,
  .container-02-title,
  .container-05 .cta span,
  .container-02-title .cta span {
    font-size: 28px;
  }
  .contact-01 {
    font-size: 80px;
    margin-top: 120px;
    margin-bottom: 80px;
  }
  .form button {
    font-size: 28px;
  }
  .parent div {
    font-size: 45px;
  }
  .parent div svg {
    margin-top: 50px;
  }
  .footer-p1 {
    color: wheat;
    font-family: "M PLUS Rounded 1c", sans-serif;
    padding: 20px;
    font-size: 17px;
    height: auto;
    width: 40%;
  }

  .footer-p2 {
    color: wheat;
    font-family: "M PLUS Rounded 1c", sans-serif;
    padding: 20px;
    height: auto;
    font-size: 17px;
    text-align: center;
    width: 40%;
  }

  .footer-p2 ul {
    display: flex;
    flex-direction: column; /* Arrange les enfants en colonne */
    align-items: center;
  }

  .footer-p2 ul a {
    color: white;
    text-decoration: none;
  }

  .footer-p3 {
    display: flex;
    flex-wrap: wrap;
  }

  footer {
    border-top: 2px solid grey;
    display: flex;
    justify-content: flex-end;
  }

  .footer-p1-01 {
    margin-top: 40px;
  }
}
