/*
 * Custom style goes here.
 * A template should always ship with an empty custom.css
 */
 .accordion-header {
    background-color: #f2f2f2;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .accordion-header:hover {
    background-color: #ddd;
  }
  
  .accordion-header i {
    margin-right: 10px;
  }
  
  .accordion-content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  
  @media (max-width: 767px) {
    .accordion-header {
      font-size: 18px;
    }
  }
  
  @media (min-width: 768px) {
    .accordion-header {
      font-size: 22px;
    }
  }