.accordion {
  min-width: 90%;
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 1px 3px rgba(70, 116, 212, 0.0);
    -moz-box-shadow: 0 1px 3px rgba(70, 116, 212, 0.0);
    box-shadow: 0 1px 3px rgba(70, 116, 212, 0.0);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-bottom: 1px solid;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  -webkit-box-shadow: 0 0px 3px rgba(70, 116, 212, 0.3);
  -moz-box-shadow: 0 0px 3px rgba(70, 116, 212, 0.3);
  box-shadow: 0 0px 3px rgba(70, 116, 212, 0.3);
}