.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../assets/metiers.webp');
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .titre_principal {
    font-family: "MuseoModerno", sans-serif;
    line-height: 120%;
    font-weight: bolder;
    font-size: 2.8rem;
    margin: 60px auto 0;
    animation: fadeInScale 1s ease-out;
  }

  .intro_principal {
    margin-top: 15px;
    font-size: 1.3rem;
  }

  .pub {
    margin-bottom: 20px;
    padding: 0 50px;
    width: 100%;
    display: flex;
    align-self: end;
    align-items: center;
    justify-content: space-between;
  }

  .pub_box {
    padding: 20px 25px;
    background-color: white;
    color:  #E42C2E;
    display: flex;
    align-items: center;
    gap: 35px;
    border-radius: 15px;
  }

  .pub_box h3{
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
  }

  .pub_box h3 span {
    font-size: 1rem;
    font-weight: 600;
  }

  .arrow_circle {
    width: 70px;
    height: 70px;
    background-color: #E42C2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: slideTop 1s ease-out;
    transition: all 0.7s ease-in-out;
  }

  .arrow_circle img {
    width: 25px;
  }

  .reactive {
    background-color: #F5F5F5;
    flex-direction: column;
    gap: 30px;
}

.reactive_wrapper, .reactive {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reactive h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #E42C2E;
}

.reactive_wrapper {
    width: 100%;
    gap: 25px;

}

.reactive_wrapper img {
    width: 36%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
}

.reactive_content {
    width: 36%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 25px;
}

.reactive_content p {
    font-size: 1.2rem;
    text-align: justify;
    color: #4A4242;
}

.reactive_content a {
    padding: 8px 30px;
    background: transparent;
    border: 1.3px solid #E42C2E;
    color: #E42C2E;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 30px;

}

.missions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission {
    width: 100%;
    display: flex;
    gap: 35px;
    padding: 0 60px;
}

.mission img {
    width: 600px;
    height: 320px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

#rase {
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.mission-content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.mission-content h3 {
    color: #E42C2E;
}

.mission-content p {
    text-align: justify;
    color: #4A4242;
}

.reverse {
    flex-direction: row-reverse;
}

.separateur {
    margin: 0 auto;
    width: 80%;
    height: 1.5px;
    background-color: #DEDEDE;
}

.lavage {
    position: relative;
    width: 100% ;
    height: 700px;
    padding: 0;
}

.lavage-centent {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F5F5F5;
    gap: 8px;
}

.lavage-centent h2 {
    margin-top: 50px;
    font-family: "MuseoModerno", sans-serif;
    font-weight: bolder;
    font-size: 2.9rem;
    color: #121212;
    animation: fadeInScale 1s ease-out;
}

.lavage-centent p {
    color: #4A4242;
    max-width: 50%;
}

.lavage-show {
    width: 60%;
    height: 400px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: -168px auto 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../assets/bg_lavage.webp);
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lavage-show a {
    background-color: white;
    padding: 12px 30px;
    color: #121212;
    border: none;
    border-radius: 30px;
    text-decoration: none;
}

.contact-container {
    display: flex;
    padding: 0;
  }
  
  .contact-form {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 50px;
    background: #fff;
  }
  
  .contact-form h2 {
    color: #E53935;
  }
  
  .contact-form a {
    background-color: #E53935;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    align-self: center;
    text-decoration: none;
  }
  
  contact-form a:hover {
    background-color: #d32f2f;
  }
  
  .contact-info {
    width: 50%;
    background: #E53935;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-top-left-radius: 60px;
  }
  
  .logo-white {
    width: 350px;
    margin-bottom: 30px;
  }
  
  .contact-info p {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  @media screen and (min-width: 1440px) {
    .reactive_wrapper img {
      height: 450px;
    }

    .reactive_content p {
      font-size: 1.4rem;
    }

    .reactive h3 {
      font-size: 1.7rem;
    }

    .reactive_content a {
      font-size: 1.2rem;
    }

    .mission {
      width: 80%;
      margin: 0 auto;
      gap: 60px;
    }

    .mission-content h3 {
      font-size: 1.4rem;
    }

    .mission-content p {
      font-size: 1.2rem;
    }

    .lavage {
      height: 85vh;
    }

    .lavage-centent p {
      font-size: 1.2rem;
    }

    .lavage-show {
      width: 53%;
      height: 450px;
      margin: -105px auto 0;
    }

    .lavage-centent p {
      font-size: 1.4rem;
    }

    .lavage-show a {
      font-size: 1.2rem;
    }

    .contact-info {
      padding: 80px 0;
    }

    .logo-white {
      width: 450px;
    }

    .contact-info p, .contact-form h2 {
      font-size: 1.6rem;
    }

    .contact-form a {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 978px) {
    .hero-section {
      height: 75vh;
      margin-top: 120px;
    }
  
    .titre_principal {
      font-size: 2rem;
    }
  
    .intro_principal {
      font-size: 1rem;
    }

    .pub_box h3{
      font-size: 1.1rem;
    }
  
    .pub_box h3 span {
      font-size: 0.85rem;
    }
  
    .arrow_circle {
      width: 55px;
      height: 55px;
    }
  
    .arrow_circle img {
      width: 20px;
    }

    .reactive h3 {
        font-size: 1.35rem;
    }

    .reactive_wrapper img {
        width: 42%;
        height: 230px;
    }
    
    .reactive_content {
        width: 42%;
    }

    .reactive_content p {
        font-size: 1.05rem;
    }
    
    .mission {
        padding: 0 40px;
        align-items: center;
    }

    .mission img {
        width: 40%;
        height: 200px;
    }

    .mission-content {
        flex: 1;
        gap: 10px;
    }

    .mission-content h3 {
        font-size: 1rem;
        text-align: left;
    }
    
    .mission-content p {
        font-size: 0.8rem;
    }

    .lavage-centent h2 {
        font-size: 2.4rem;
    }
    
    .lavage-centent p {
        font-size: 0.87rem;
    }

    .lavage-show {
        max-height: 350px;
    }

    .contact-form h2 {
        font-size: 1.12rem;
      }
    
      .logo-white {
        width: 300px;
      }
      
      .contact-info p {
        font-size: 0.85rem;
      }
  }

  @media (max-width: 768px) {
    .hero-section {
      padding: 0;
      margin-top: 75px;
    }
    .hero-content {
      border-radius: 0;
    }
  
    .titre_principal {
      margin-top: 40px;
      font-size: 1.8rem;
    }

    .intro_principal {
      margin-top: 8px;
      font-size: 0.9rem;
    }

    .pub {
      margin-bottom: 0px;
      padding: 0px;
      align-items: end;
    }
  
    .pub_box {
      background-color: #F5F5F5;
      gap: 25px;
      border-radius: 0;
      border-top-right-radius: 20px;
    }

    .arrow_circle {
      border-radius: 0;
      border-top-left-radius: 20px;
    }

    .reactive h3 {
        font-size: 1.25rem;
    }

    .reactive_wrapper {
        flex-direction: column;
    }

    .reactive_wrapper img {
        height: 300px;
        border-radius: 30px;
    }

    .reactive_wrapper img, .reactive_content {
        width: 75%;
    }

    .reactive_content {
        align-items: center;
        background-color: white;
        padding: 30px 40px;
        border-radius: 30px;
        gap: 30px;
    }
    
    .reactive_content p {
        font-size: 1rem;
    }
    
    .reactive_content a {
        background: #E42C2E;
        border: none;
        color: white;
    }

    .missions {
        align-items: center;
    }

    .mission {
        width: 80%;
        padding: 0;
        flex-direction: column;
        gap: 20px;
        background-color: #F5F5F5;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        border-top-right-radius: 60px;
        border-top-left-radius: 60px;
    }

    .mission img {
        width: 100%;
        max-height: 250px;
    }

    .mission-content {
        padding: 0px 30px 20px;
    }

    .mission-content h3 {
        font-size: 0.9rem;
        align-self: center;
    }

    .mission-content p {
        font-size: 0.7rem;
    }

    .lavage-centent h2 {
        font-size: 2rem;
    }
    
    .lavage-centent p {
        font-size: 0.75rem;
    }

    .lavage-show {
        width: 65%;
    }

    .contact-container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
      }
      
      .contact-form, .contact-info {
        width: 80%;
      }
    
      .contact-form h2 {
        font-size: 1.3rem;
      }
    
      .contact-info {
        padding: 80px 50px;
        border-bottom-right-radius: 60px;
        gap: 28px;
      }
    
      .logo-white {
        width: 350px;
        margin-bottom: 15px;
      }
      
      .contact-info p {
        font-size: 1.2rem;
      }
  }

  @media (max-width: 580px) {
    .hero-section {
      max-height: 28vh;
    }
    
    .titre_principal {
      margin-top: 30px;   
      font-size: 1.2rem;
    }

    .intro_principal {
      font-size: 0.6rem;
    }

    .pub_box {
      padding: 15px;
      border-top-right-radius: 10px;
    }

    .pub_box h3{
      font-size: 0.8rem;
    }
  
    .pub_box h3 span {
      font-size: 0.6rem;
    }

    .arrow_circle {
      width: 48px;
      height: 48px;
      border-top-left-radius: 10px;
    }
  
    .arrow_circle img {
      width: 16px;
    }

    .reactive h3 {
        font-size: 1.1rem;
    }

    .reactive_content {
      border-radius: 20px;
    }

    .reactive_wrapper {
        gap: 10px;
    }


    .reactive_wrapper img {
        height: auto;
        border-radius: 20px;
    }

    .reactive_wrapper img, .reactive_content {
        width: 90%;
    }

    .reactive_content p, .reactive_content a {
        font-size: 0.8rem;
    }

    .mission {
        width: 90%;
    }

    .mission-content h3 {
        font-size: 0.8rem;
        text-align: center;
    }

    .mission-content p {
        font-size: 0.65rem;
    }

    .lavage {
        height: 450px;
    }

    .lavage-centent {
        height: 250px;
    }
    
    .lavage-centent h2 {
        font-size: 1.4rem;
    }
    
    .lavage-centent p {
        font-size: 0.7rem;
        max-width: 80%;
    }

    .lavage-show {
        margin: -50px auto 0;
        width: 80%;
        max-height: 200px;
    }

    .lavage-show a {
      font-size: 0.75rem;
    }

    .contact-form, .contact-info {
        width: 90%;
      }
    
      .contact-form {
        padding: 50px 20px;
      }
    
      .contact-form h2, .contact-info p i {
        font-size: 1.1rem;
      }
    
      .contact-form a {
        font-size: 0.8rem;
      }
    
      .logo-white {
        width: 300px;
      }
      
      .contact-info p {
        font-size: 0.8rem;
      }
  }

  @media (max-width: 380px) {
    .hero-section {
      padding: 0;
      margin-top: 25px;
    }

    .hero-content {
      height: 75%;
      border-radius: 0;
    }
  
    .titre_principal {
      font-size: 1rem;
    }

    .intro_principal {
      font-size: 0.5rem;
    }

    .pub {
      justify-content: center;
    }

    .pub_box {
      border-top-left-radius: 10px;
    }

    .pub_box h3{
      font-size: 0.7rem;
    }
  
    .pub_box h3 span {
      font-size: 0.5rem;
    }

    .arrow_circle {
      display: none;
    }

    .reactive {
        padding: 0px 20px 30px;
    }

    .reactive h3 {
        font-size: 0.8rem;
    }

    .reactive_wrapper img, .reactive_content {
        width: 100%;
    }

    .reactive_content {
        padding: 20px;
        gap: 15px;
    }

    .reactive_content p, .reactive_content a {
        font-size: 0.75rem;
    }

    .missions {
        padding: 30px 20px;
    }

    .mission img {
        width: 100%;
        max-height: 180px;
    }

    .lavage {
        height: 400px;
    }

    .lavage-centent h2 {
        font-size: 1.1rem;
    }
    
    .lavage-centent p {
        font-size: 0.65rem;
        max-width: 80%;
    }

    .lavage-show {
        max-height: 150px;
    }

    .contact-form, .contact-info {
        width: 95%;
      }
    
      .contact-form h2 {
        font-size: 1rem;
      }
    
      .logo-white {
        width: 250px;
      }
    
      .contact-info p {
        font-size: 0.7rem;
      }
  }


