.cgc-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cgc-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;

  }
  

  
  .cgc-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;
  }
  
  .cgc-top-img {
    width: calc(100% - 14px);
    height: calc(100% - 8px);
    background-image: url(../img/cgc2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  
  .cgc-middle {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 1rem;
    align-items: stretch;
  
  }
  
  .cgc-middle-left {
    width: 40%;
    height: auto; /* Height auto pour que la hauteur soit déterminée par la hauteur de .cgc-middle-right */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  .cgc-middle-left-img {
    width: 100%;
    height: 80%;
    background-image: url(../img/cgc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .cgc-middle-right {
    width: 60%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cgc-middle-right-text {
    margin: 1rem 0;
    width: 80%;
    /* text-indent: 20px;  */
  }
  
  .cgc-middle-right-text strong {
     color: red;
    }
  
  .cgc-bottom {
      width: 100%;
      height: fit-content;
      background-color: #535351;
      position: relative;
      padding-top: 3rem;
  }
  
  .cgc-bottom-title {
      font-size: 35px;
      text-align: center;
      color: white;
      font-weight: bold;
  }
  
  .cgc-bottom-content {
      width: 90%;
      height: fit-content;
      margin: auto;
      display: flex;
      justify-content: center;
      padding: 3rem 0;
  
  }
  
  
  
  .cgc-bottom-text {
      color: white;
      max-width: 600px;
  }

  
/*    responsive */

@media (max-width: 800px) {

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


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

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

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

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




}
  