.responsive-margins {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
  }


  span.rose {
    color: #cf0b5d;
  }


/* Section devenir partenaire */
#devenirPartenaire {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    /* background-color: #F7F7F7; */
    background: rgb(255,255,255);
  background: linear-gradient(140deg, rgba(255,255,255,1) 0%, rgba(207,110,150,0.6334908963585435) 50%, rgba(255,255,255,1) 100%);
  }
  
  .container-devenir{
    display: grid;
    grid-template-columns: 60% 40%;
  
    background: rgba(255, 255, 255, 0.37);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.9px);
    -webkit-backdrop-filter: blur(9.9px);
    border: 1px solid rgba(214, 214, 214, 0.52);
  
  
    /* background-color: rgba(255, 255, 255, 0.45);
    border-radius: 24px;
    border: 1px solid #D6D6D6; */
    /* background: rgb(255,255,255);
    background: linear-gradient(140deg, rgba(255,255,255,1) 0%, rgba(207,110,150,0.6334908963585435) 50%, rgba(255,255,255,1) 100%); */
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
    align-items: center;
    
  }
  
  .container-devenir > #container-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    
  }
  
  .container-devenir > #container-left > h1 {
    color: #2F2E41;
    font-size: 3.8rem;
    font-weight: 600;
    margin: 0;
  }
  
  .container-devenir > #container-left > p {
    color: #2F2E41;
    font-size: 1.7rem;
    opacity: 0.9;
    margin: 0;
  }
  
  .container-devenir > #container-left > a {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-family: inherit;
    color: white;
    background-color: var(--rose-color);
    padding: 15px 25px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: rgba(207, 11, 93, 0.3) 0 3px 8px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 200ms background-color;
    font-weight: 600;
    font-size: 1.3rem;
    text-decoration: none;
  
    margin-top: 40px;
  }

    .container-devenir > #container-left > a:hover {
        background-color: #ba0a53;
    }
  
  .container-devenir > #container-right {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
  }
  
  .container-devenir > #container-right > img {
    max-width: max-content;
    width: 70%;
    height: 100%;
    object-fit: cover;
  }

  /* Fin de la section partenaire */


  @media screen and (max-width: 1000px) {
    .responsive-margins {
      max-width: 800px;
    }
    

    .container-devenir{
      grid-template-columns: 100%;
    }
  
    .container-devenir > #container-right > img {
      display: none;
    }
  
    .container-devenir > #container-left {
      padding: 15px;
    }
  
    .container-devenir > #container-left > h1 {
      font-size: 2.4rem;
    }
  
    .container-devenir > #container-left > p {
      font-size: 1.1rem;
    }
  
    .container-devenir > #container-left > a {
      margin-top: 0px;
    }
  }

    @media screen and (max-width: 800px) {
        .responsive-margins {
        max-width: 700px;
        }
    }

    @media screen and (max-width: 600px) {
        .responsive-margins {
            padding-left: 15px;
            padding-right: 15px;
        }
    }

