/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion-wrapper {
  margin-top:10px;
  max-width: 800px;
  margin-bottom:20px;
}

@media (max-width: 767px) {
    .h1 {
      margin-top:20px;
    }
}

/* 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) */
.active, .accordion:hover {
  background-color: #ccc;
}

.h1 {
    font-size: x-large;
    color: rgb(224, 35, 48);
    margin-bottom: 5px;
}

.panel {
  margin-top: 5px;
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
