@charset "UTF-8";
body {
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-family: "Lobster Two", cursive;
  text-align: center;
  margin-top: 30px;
  font-size: 25px;
  color: #2b3a40;
}

.accordion {
  line-height: 1.6;
}
.accordion__item {
  border-bottom: 1px solid #dce7eb;
}
.accordion__title {
  padding: 15px 15px 15px 40px;
  display: block;
  position: relative;
  font-weight: 400;
}
.accordion__title:before {
  font-family: FontAwesome;
  content: "";
  font-size: 15px;
  position: absolute;
  left: 15px;
  top: 12px;
  color: orange;
}
.accordion__title h5 {
  border: 1px solid #fefffa;
  display: inline-block;
}
.accordion__title:hover, .accordion__title:focus {
  cursor: pointer;
  outline: none;
}
.accordion__title:hover h5, .accordion__title:focus h5 {
  cursor: pointer;
  display: inline-block;
}
.is-expanded .accordion__title:before {
  content: "";
}
.accordion__content-inner {
  padding: 0 40px 10px 40px;
}
.accordion__content {
  transition: height 0.3s ease-out;
  height: 0;
  overflow: hidden;
}