#associations {
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
}

.association {
    gap: 16px;
    display: flex;
    flex-wrap: nowrap;
    justify-content:space-between;
    width:100%;
    background-color: #fff;
    padding: 16px 0;
    border-radius: 8px;    
}

.association_content {
    width: calc(75% - 16px);
    position:relative;
}

.association h2 {
    padding:0;
    margin:0;
}

.association_photo {
    width: calc(25% - 16px);
    height: 140px;
    background-color:#fff;
    background-image:url('../assets/logos/logo-header.png');
    background-position:center;
    background-size:40%;
    background-repeat:no-repeat;
    overflow:hidden;   
    
    border-top-left-radius:8px;
    border-bottom-left-radius:8px;    
}

.association_photo img {
    position: relative;
    background-color:#fff;
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow:hidden;
    object-position:center;    
    scale: 1;
    transition: 0.2s; 
    
    border-top-left-radius:8px;
    border-bottom-left-radius:8px;   
}




@media (max-width: 1100px) {
  .association {
    flex-direction:column;
    gap:0;
    padding:0
  }

  .association_photo, .association_photo img {
    border-bottom-left-radius:0;
    border-top-right-radius:8px;      
  }
  .association_photo {
    flex: 1;
    width:100%;
  }
  .association_content {
      flex: initial;
      width:100%;
      
      background-color:#eee;
      padding:16px;
      
      border-bottom-left-radius:8px;   
      border-bottom-right-radius:8px;   
  }
}

/* detail */
.asso_sous_titre {
    font-weight:500;
    margin-bottom:16px;
    
}
.asso_presentation {

    margin-top:16px;
    
}
.asso_infos {
    gap: 32px;
    display: flex;
    justify-content:space-around;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;     
}
.asso_infos_col {
    flex:1;
}

.asso_infos_col .association_photo {
    width: 100%;
    height: 200px;
    
    border-radius:0;    
}

.asso_infos_col .ibtns {
    position:relative;
    flex-direction:column;
}

.asso_contact {
    margin-bottom:16px;
}

.asso_contact a {
    color: #3AB979;
}

@media (max-width: 1100px) {
  .asso_infos {
    flex-direction:column;
    gap:0;
  }
}