/* 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;
}

/* 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;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.custom-single-page time.h6{
  margin-bottom: 0px;
}
.custom-single-page ul{
  margin-bottom: 20px;
}
.custom-single-page ul li{
  list-style: none;
  padding-bottom: 10px;
}
.custom-single-page p{
  margin-bottom: 20px;
}
.custom-single-page h1{
  font-size:48px;
  margin-bottom: 20px;
}
.custom-single-page h2{
  font-size:24px;
}
.custom-single-page h2 a{
  font-size:24px;
}
.custom-single-page h3{
  font-size:18px;
}
.custom-single-page .accordion {
  border-bottom: solid 1px #fff;
}
.custom-single-page .accordion::after {
  content: '\002B';
  color: #9fa389;
  font-size: 26px;
  line-height: 26px;
}
.custom-single-page .accordion.active::after {
  content: '\2212';
  color: #9fa389;
  font-size: 26px;
  line-height: 26px;
}
.custom-single-page .panel {
  padding: 18px 18px;
  background-color: white;
}
.custom-single-page .neo-block--text{
  margin-bottom: 30px!important;
}