.faq-sec .accordion{
    max-width: 992px;
    margin: 0 auto;
}
.accordion-wrapper{
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.accordion .accordion-item {
	border: unset;
    border-bottom: 1px solid #e5e5e5;
}
  
.accordion .accordion-item button[aria-expanded='true'] {
	border-bottom: 1px solid #132048;
}

.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	/* padding: 1em 0; */
	color: #2A5CA8;
	font-size: 1.15rem;
	font-weight: 600;
	border: none;
	background: none;
	outline: none;
	cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
	color: #03b5d2;
	border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
	padding: 1em 1.5em 1em 0;
	font-weight: 600;
	display: block;
}

.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 25px;
	right: 0;
	width: 22px;
	height: 22px;
	border: 1px 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:hover,
.accordion button[aria-expanded='true'] {
	color:var(--dark-blue);
}
.accordion button[aria-expanded='true'] .icon::after {
	width: 0;
}


.accordion button[aria-expanded='true'] + .accordion-content {
	opacity: 1;
	max-height: 1000px;
	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;
	font-size: 19px;
	line-height: 25px;
	color: #20407E;
	width: 98%;
	margin: 0 auto;
	display: block;
}
.accordion .accordion-content > div{
	margin: 25px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 19px;
	line-height: 25px;
	color: #20407E;
}

.faq-desc-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq-desc-wrap p {
    font-size: 19px;
    line-height: 25px;
    color:#20407E;
	text-align: center;
}