.terrassement-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.terrassement-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;

}

.page-title {
  width: 100%;
  font-size: 35px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  margin: 1rem 0;

}

.terrassement-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;
}

.terrassement-top-img {
  width: calc(100% - 14px);
  height: calc(100% - 8px);
  background-image: url(../img/terrassement2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.terrassement-middle {
  width: 100%;
  height: fit-content;
  display: flex;
  padding: 1rem;
  align-items: stretch;

}

.terrassement-middle-left {
  width: 40%;
  height: auto; /* Height auto pour que la hauteur soit déterminée par la hauteur de .terrassement-middle-right */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.terrassement-middle-left-img {
  width: 100%;
  height: 80%;
  background-image: url(../img/terrassement.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.terrassement-middle-right {
  width: 60%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.terrassement-middle-right-text strong {
   color: red;
  }

.terrassement-bottom {
    width: 100%;
    height: fit-content;
    background-color: #535351;
    position: relative;
    padding-top: 3rem;
}

.terrassement-bottom-title {
    font-size: 35px;
    text-align: center;
    color: white;
    font-weight: bold;
}

.terrassement-bottom-content {
    width: 90%;
    height: fit-content;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 3rem 0;

}



.terrassement-bottom-text {
    color: white;
    max-width: 600px;
}


/*    responsive */

@media (max-width: 800px) {

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


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

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

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

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




}