

/* Style the accordion container. */
.accordion {
  background-color: transparent;
  width: 90%;
  max-width: 612px;
  text-align: left;
  padding: 0;
  border: none;
  outline: none;
  position: relative;
  transition: 0.2s;
}
.accordion hr {
  height: 1px;
  width: calc(100% + 48px);
  background-color: #fff;
  margin: 0;
  border: none;
}
a[href=""] {
  pointer-events: none;
}
.accordion .button {
  cursor: pointer;
  width: 100%;
  border: none !important;
  padding: 0;
  color: #fff;
}
.accordion .button:after {
  content: '+';
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 0;
  bottom: 2px;
  padding: 0;
}
.accordion .button:active {
  top: 0px;
}
.accordion .button.active {
  color: #3cbef6;
}
.accordion .button.active:after {
  content: '−';
}
.accordion a:hover,
.accordion .button:hover,
.accordion .button:hover:after {
  color: #3cbef6;
}
.accordion h2,
.accordion h4 {
  padding-bottom: 2px;
  font: 18px HurmeGeometric-SmBd;
  text-align: left;
}
/* Style the accordion panel. Note: hidden by default */
.accordion .panel {
  padding: 12px 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.accordion .panel h3 {
}
.accorion .panel p {
  padding: 0;
  margin-bottom: 16px;
  font-size: 14px;
}
@media screen and (min-width: 1400px){
  .accordion,
  .accordion .panel {
  }
}

