.atouts-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .atouts-top {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgb(45, 45, 43);
    background: linear-gradient(
      95deg,
      rgba(45, 45, 43, 1) 20%,
      rgba(85, 86, 84, 1) 100%
    );
    padding: 3rem 1rem;

  }
  

  
  .atouts-top-img-container {
    width: 60%;
    height: 40vh;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
  }
  
  .atouts-top-img {
    width: calc(100% - 14px);
    height: calc(100% - 8px);
    background-image: url(../img/atouts.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  
  .atouts-middle {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: stretch;
  
  }
  
  .atouts-block {
   
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 1rem;
    /* border: 1px solid black; */

  }

  .atouts-block-title {
    font-size: 35px;
  
    margin: 1rem 0 2rem 0;
    font-weight: bold;
 
  }

  .atouts-block-text {
    width: 90%;
    margin: auto;
  }
  
  .atouts-bottom {
      width: 100%;
      height: fit-content;
      background-color: #535351;
      position: relative;
      padding-top: 3rem;
  }
  
  .atouts-bottom-title {
      font-size: 35px;
      text-align: center;
      color: white;
      font-weight: bold;
  }
  
  .atouts-bottom-content {
      width: 90%;
      height: fit-content;
      margin: auto;
      display: flex;
      justify-content: center;
      padding: 3rem 0;
  
  }
  
  
  
  .atouts-bottom-text {
      color: white;
      max-width: 600px;
  }

  
/*    responsive */

@media (max-width: 800px) {

  .atouts-top {
    flex-direction: column;
    align-items: center;
  }


  
  .atouts-top-img-container {
    width: 90%;
 
  }

  .atouts-middle {
    flex-direction: column-reverse;
    align-items: center;
  
  }
  
  .atouts-middle-left {
    width: 100%;
    height: 300px; /* Height auto pour que la hauteur soit déterminée par la hauteur de .atouts-middle-right */
   
  }
  

  .atouts-middle-right {
    width: 100%;
    padding: 1rem ;
  
  }

  .atouts-middle-right-text {
    margin: 1rem 0;
    width: 100%;
    /* text-indent: 20px;  */
  }




}
  