.faq {
	margin: 0 auto;
	padding: 15px;
   
}

.faq h2 {
	margin-top: 0px;
	font-size: 52px;
	margin-bottom: 0;
	color: #415A76;
	font-weight: bold;
	line-height: 1;
}

.faq p {
	color: #666666;
}

.accordion {
	margin-top: 2em;
}

.accordion .accordion-item {
	border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded=true] {
	border-bottom: 1px solid #415A76;
}

.accordion button {
	position: relative;
	display: block;
	text-align: right;
	width: 100%;
	padding: 1em 0;
	color: #666666;
	font-size: 1.15rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}

.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
	color: #000;
}

.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
	color: #415A76;
	border: 1px solid #415A76;
}

.accordion button .accordion-title {
	padding: 1em 0em 1em 0;
	font-size:20px;
}

.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 24px;
	right: auto;
	left: 0;
	width: 22px;
	height: 22px;
	border: 0px solid;
	border-radius: 22px;
}

.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: #415A76;
}

.accordion button[aria-expanded=true] .icon::after {
	width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
	opacity: 1; max-height: max-content; transition: all 200ms linear; will-change: opacity, max-height; padding: 30px 0; line-height: 30px; font-size: 16px;
}

.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}

.accordion .accordion-content p {
	font-size: 1rem;
	font-weight: 300;
	margin: 2em 0;
}


@media screen and (max-width: 600px) {
	.faq{
		width: 100%;
		padding: 15px;
	}
}