  .accordion-button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: .1em;
  color: #007055;
  /*font-size: 1.15rem;
  font-weight: 400;*/
  border: none;
  background: none;
  outline: none;
  transition: 0.3s;
  border-radius: .8em;
}
.accordion-button:hover, .accordion button:focus {
  cursor: pointer;
  color: #007055;
}
.accordion-button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #007055;
  /*border: 1px solid #007055;*/
}
.accordion-button .accordion-title {
  /*padding: 1em 1.5em 1em 0;*/
}
.accordion-button .icon {
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  margin-top: .8em;
  margin-right: .8em;
}
.accordion-button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion-button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion-button[aria-expanded=true] {
  color: #007055;
}
.accordion-button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion-button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 500em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden; 
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion {
  overflow: hidden; 
  padding: .4em .4em .4em .4em;
}

.accordion .accordion-content p {
  /*font-size: 1rem;
  font-weight: 300;*/
  margin: 2em 0;
}

.accordion-button:hover {
    background: #ffcb0b;
	/*background: #f0f0f0;*/
	border-radius: .8em;
}

h3 {
  font-size: 1.17em;
  margin: .8em 2em .8em .8em !important;  
}
    
.channel {
	margin: 2em;
	margin-top: .6em;
}

.main-channel {
  margin: 0em;
  margin-bottom: 2em;
}

.channel.main-channel .social-media-icons {
  margin-bottom: 0em;
}