.accordion-container {
	position: relative;
	width: 100%;
	padding-left: 1.25rem;
	padding-right: 2.25rem;
	margin-bottom: 2rem;
}
.accordion-container .accordion-question {
	font-size: 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	cursor: pointer;
}
.accordion-container .accordion-question button {
	font-size: 24px;
	border: 0;
	cursor: pointer;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.accordion-container .accordion-question button .accordion-minus {
	display: none;
}
.accordion-container .accordion-question button .accordion-plus {
	display: flex;
}
.accordion-container .accordion-answer {
	display: none;
	-webkit-animation-name: slideOut;
	        animation-name: slideOut;
	-webkit-animation-duration: 1.5s;
	        animation-duration: 1.5s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
	margin-top: 2rem;
	padding-left: 1.75rem;
}
.accordion-container .accordion-answer li{
	margin-bottom: 0.75rem;
	font: normal normal normal 19px/29px Effra;
	letter-spacing: 0.3px;
	color: #0C2130;
}
.accordion-container.show .accordion-question button .accordion-minus {
	display: flex;
}
.accordion-container.show .accordion-question button .accordion-plus {
	display: none;
}

nav .accordion-container.show .accordion-question button svg {
	width: 1rem;
}
.accordion-container.show .accordion-answer {
	display: block;
	height: auto;
	overflow: hidden;
	-webkit-animation-name: slideIn;
	        animation-name: slideIn;
	-webkit-animation-duration: 1.5s;
	        animation-duration: 1.5s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}

@-webkit-keyframes slideIn {
	from {
		max-height: 0;
	}
	to {
		max-height: 100vh;
	}
}

@keyframes slideIn {
	from {
		max-height: 0;
	}
	to {
		max-height: 100vh;
	}
}
@-webkit-keyframes slideOut {
	from {
		max-height: 100vh;
	}
	to {
		max-height: 0;
	}
}
@keyframes slideOut {
	from {
		max-height: 100vh;
	}
	to {
		max-height: 0;
	}
}
