.accordion{
	padding-top: 2rem;
}
.accordion h2{
	font-size: 2rem;
	margin-bottom: 24px;
  	margin-top: 40px;
}
.acc > h3, .acc > p {
	text-align: left;
	display: block;
	margin-bottom: 0;
	background-color: transparent;
}
.acc > h3{
	margin-top: 0;
	font-size: 1.75rem;
}
.acc {
  	cursor: pointer;
  	padding: 1.5rem 0.5rem;
 	width: 100%;
  	transition: all 0.5s ease;
	background: transparent url("/layout/arrow-down-blue.svg") no-repeat 98% center;
	background-size: 20px;
}
.acc.active {
	background: transparent url("/layout/arrow-up-orange.svg") no-repeat 98% center;
	background-size: 20px;
}
.panel {
	display: block;
  	padding: 0 0.75rem;
	max-height: 0;
  	overflow: hidden;
	transition: height 0.2s ease-out;
	text-align: left;
	width: 100%;
}
.panel.closed > *{
	display: none;
}
.panel p{
	margin-bottom: 0.6rem;
}
.panel p:last-of-type{
	margin-bottom: 1.5rem;
}
.panel ul, .panel ol {
  	margin-left: 1em;
    margin-bottom: 2em;
}
.panel ul{
    list-style: disc;
}
.panel li {
  	padding-left: 0.5em;
}
.panel img{
    max-height: 500px;
    width: auto;
}