.arrow-down,
.arrow-up {
	width: 1.5rem;
	height: 1.5rem;
	fill: white;
}
.accordion-title {
	margin: 0.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	background: #369;
	color: white;
	width: 100%;
	cursor: pointer;
	border: none;
}
.accordion-content {
	height: 0;
	overflow: hidden;
	padding: 0 1rem;
	transition: all 0.25s ease-in-out;
}
.accordion-title.arrow-open .arrow-down {
	display: block;
}
.accordion-title.arrow-open .arrow-up {
	display: none;
}
.accordion-title .arrow-up {
	display: block;
}
.accordion-title .arrow-down {
	display: none;
}
p {
	color: rgb(55,65,81)
}
