.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
  }
  .collapsible_faq {
    background-color: #e4e6e6;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    font-weight: 600;
    text-align: left;
    outline: none;
    font-size: 25px;
    border: none;
    border-radius: 10px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active1, .collapsible:hover {
    background-color: #ccc;
  }
  .collapsible_faq:hover {
    background-color: #505759;
    border-radius: 5px;
    color:#e4e6e6 ;
    transition:0.5s;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  }