<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main: #212b55;
    --main-lighter: #123d8c;
    --light-blue: #c6d7f0;
    --gold: #dcc592;
    --orange: #ff4000;
    --radius: 20px;
    --row-member-height: 50px;
    --beige: #f4efe6;
    --era_transition: 0.9s;
  }
  
  @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;display=swap");
  
  /* Style de l'accordÃƒÂ©on */
  .accordion {
    margin-bottom: 10px;
  }
  
  .accordion h3 {
    cursor: pointer;
    margin: 0;
    color: var(--light-blue);
    font-family: "Playfair Display", serif !important;
    /* transform: skewX(-10deg); */
    font-style: italic !important;
    font-size: 35px !important;
  }
.container-title-team-category .signe {
	background-image: url("/wp-content/uploads/2024/04/plus-accordeon.png");
	background-size: cover;
	width: 25px;
	height: 25px;
}
.container-title-team-category.ui-state-active .signe {
	background-image: url("/wp-content/uploads/2024/05/moins-accordeon.png");
}
  
  /* Style des team-members */
  .team-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgb(79 78 103);
    min-height: var(--row-member-height);
    padding: 10px;
    transition: all var(--era_transition) ease !important;
    /* overflow: hidden; */
    cursor: pointer;
  }
  .team-member:last-child {
    border-bottom: none;
  }
  .team-member p,
  .team-member .team-member-name {
    color: var(--beige);
  }
  .team-member .team-member-name {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: lighter;
  }
  .team-member-col-1,
  .team-member-col-3 {
    padding: 10px 0;
  }
  .team-member-col-1 {
    max-width: 33%;
  }
  .team-member-col-2 {
    width: 33%;
    margin: 0 2%;
  }
  .team-member-fonction {
    text-align: right;
    /* transform: skewX(-10deg); */
    font-style: italic;
    font-family: "Playfair Display", serif;
    color: var(--light-blue) !important;
  }
  
  .container-img-member {
    display: flex;
    justify-content: center;
    background: var(--light-blue);
    border-radius: var(--radius);
    height: var(--row-member-height);
    transition: height var(--era_transition) ease !important;
    overflow: hidden;
  }
  .container-img-member img {
    object-fit: cover;
  }
  .container-sub-category-team {
    height: 1px;
    background: var(--orange);
    position: relative;
  }
  .sub-category-team-name {
    height: 16px;
    font-size: 12px;
    padding: 3px 5px;
    background: var(--orange);
    color: black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1 !important;
  }
  
  .team-member-description {
    transform: scaleY(0);
    height: 0;
    transform-origin: top;
  }
  .team-member-description,
  .team-member-description p {
    color: var(--orange) !important;
    line-height: 1.2em !important;
    font-size: 14px;
    font-weight: 300;
  }
  
  .team-member-opened .team-member-description {
    height: auto;
    transform: scaleY(1);
    transition: var(--era_transition) !important;
  }
  .team-member-opened {
    --row-member-height: 200px;
    align-items: flex-start !important;
    transition: height var(--era_transition) ease !important;
  }
  
  @media screen and (max-width: 782px) {
    .team-member .team-member-name {
      font-size: 16px;
      line-height: 1.2 !important;
      text-shadow: 0 0 15px rgba(0, 0, 0, 0.527);
    }
    .team-member-fonction {
      line-height: 1.2 !important;
      font-size: 14px;
    }
    .team-member-description,
    .team-member-description p {
      font-size: 10px;
    }
    .team-member-opened {
      --row-member-height: 100px;
    }
    .team-member {
      padding: 4px 0;
    }
    .team-member-col-2 {
      width: 50%;
      margin: 0 2%;
    }
    .team-member-name strong {
      white-space: nowrap;
      z-index: 999999999;
      position: relative;
    }
    .sub-category-team-name {
      font-size: 8px;
    }
    .accordion h3 {
      font-size: 25px;
      line-height: 1.2;
    }
  }
  @media screen and (max-width: 550px) {
    .team-member-col-2 {
      width: 40%;
      margin: 0 2%;
    }
    .accordion h3 {
      font-size: 22px;
    }
  }
  </pre></body></html>