/* #region SECTION 2 */
#section2{
    padding-bottom: var(--spacing-lg);
}
#section21{
    background-color: var(--beige);
    box-sizing: border-box;
    border-radius: 16px;
    padding: var(--spacing-lg);
}
#section219{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--spacing-md);
    column-gap: var(--spacing-md);
}
#section2111{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: var(--spacing-sm);
    column-gap: var(--spacing-sm);
    border-radius: 16px;

}
.section21111{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: var(--spacing-sm);
    background-color: var(--blanc);
    row-gap: var(--spacing-sm);
    column-gap: var(--spacing-sm);
    max-width: 200px;
    border-radius: 8px;
    border: 1px solid #EBEBCE;
}
.section21111 p{
    margin: 0;
}
#section212{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--spacing-sm);
    column-gap: var(--spacing-sm);
}
.section2121{
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.section2121 p{
    margin: 0;
}
.section21211{
    font-weight: bold;
}
.section21213{
    font-size: 40px;
    font-weight: bold;
}

/* #endregion */

/* #region SECTION 5 */
#section5{
    padding: var(--spacing-lg) 0;
}
#section51{
    padding: var(--spacing-lg);
    background-color: var(--beige);
    border-radius: 16px;
    box-sizing: border-box;
}
/* #endregion */


#section-3-bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 0;
  }
  
  #triangle-code {
    border: 0;
    transition: border 0.5s ease-out;
    display: inline-block;
    height: 0;
    width: 0;
  }
  
  #section-3-2 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    background-color: #f4f5f6;
    width: 100%;
    /* margin-bottom: 30px; */
  }
  
  .section-3-2-active {
    max-height: max-content !important;
  }
  
  .section-3-2-notactive {
    max-height: 0 !important;
  }
  
  .wpcf7 {
    width: 50%;
    display: flex;
    margin: auto;
  }
  
  .wpcf7-form {
    width: 100%;
  }
  
  #titreFormulaire {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 30px 0;
    text-align: center;
  }
  
  #formulaire2 {
    display: flex;
    margin-bottom: 30px;
  }
  
  #particulierPro {
    width: 50%;
  }
  
  #civilite {
    margin-left: 30px;
    width: 50%;
  }
  
  #formulaire3 {
    display: flex;
    margin-bottom: 30px;
  }
  
  #nom-id {
    width: 50%;
  }
  
  #prenom-id {
    width: 50%;
    margin-left: 30px;
  }
  
  #formulaire4 {
    display: flex;
    margin-bottom: 30px;
  }
  
  #datedenaissance-id {
    width: 50%;
  }
  
  #tel-id {
    width: 50%;
    margin-left: 30px;
  }
  
  #mail-id {
    width: 50%;
  }
  
  #adresse-id {
    margin-bottom: 30px;
  }
  
  #formulaire5 {
    display: flex;
    margin-bottom: 30px;
  }
  
  #formulaire51 {
    margin: 30px 0;
  }
  
  #formulaire51 .wpcf7-list-item {
    margin: 0;
  }
  
  #formulaire61 {
    margin-bottom: 30px;
    margin-top: 15px;
  }
  
  #codepostal-id {
    width: 50%;
  }
  
  #ville-id {
    width: 50%;
    margin-left: 30px;
  }
  
  #formulaire7 {
    font-size: 15px;
  }
  
  #formulaire8 {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  #formulaire9 {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  div.wpcf7 .wpcf7-submit:disabled {
    opacity: 0.5;
  }
  
/* #region @MEDIA */
@media (max-width: 1199px) {
    #section219 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .section21111 {
        max-width: none;
    }
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
    #section2111 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    #section212 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    #section51 {
        padding: var(--spacing-md);
    }
}

/* #endregion */