.accordion__title {
  background: transparent;
  border: none;
  border-bottom: 1px solid #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 1.5rem;
  font-weight: 400;
  transition: 0.4s;
}

.active, .accordion__title:hover, .accordion__title:hover:after {
  color: rgb(20, 117, 173);
}

.accordion__content {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion__content p {
  margin: 2rem 0;
  font-size: 1rem;
}

.accordion__title:after {
  content: '\02795';
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.accordion__title.active:after {
  content: "\2796";
  color: rgb(20, 117, 173);
}
