/* staff page */
/* Three columns side by side */
.column-staff {
    /* float: right; */
    width: 30%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  /* Display the columns below each other instead of side by side on small screens */
  @media screen and (max-width: 650px) {
    .column-staff {
      width: 100%;
      display: block;
    }
  }
  
  /* Add some shadows to create a card effect */
  .card-staff {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border-radius: 10px;
  }
  
  /* Some left and right padding inside the container */
  .container-staff {
    padding: 15px 16px;
  }
  
  /* Clear floats */
  .container-staff::after, .row-staff::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title-staff {
    color: grey;
  }
  
  .button-staff {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #f77100;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button-staff:hover {
    background-color: #f77100;
  }


/* collapsible */ 
  .content-staff {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    /* display:  none; */
    transition: max-height 0.2s ease-out;
    background-color: #fff;
    outline: none;
  }

 
  .collapsible {
    background-color: grey;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 25px;
    border-radius: 10px;
  }
  
  .active-staff, .collapsible:hover {
    background-color: #f77100;
    outline: none;
  }
  
  .collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    outline: none;
  }

  .collapsible:focus { outline: none; }
  
  .active-staff:after {
    content: "\2212";
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    outline: none;
  }
/* end collapsible */ 

  /* end staff page */