
.close .accordion-content{
    height:0px;
    transition:height 1s ease-out;
    -webkit-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
   display:block;
    
    
}
.open .accordion-content{
   
   
    -webkit-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
    -webkit-transform-origin: top;
	-o-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;

	-webkit-transition: -webkit-transform 0.4s ease-out;
	-o-transition: -o-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	transition: transform 0.4s ease;
        box-sizing: border-box;
}

.section-faqs {
	padding: 80px 0;
}


.section-faqs .accordion {
	padding: 22px 45px 22px 15px;
	position: relative;
	background-color: transparent;
	margin: 15px 0 0 0;
	box-shadow: 0 0.5rem 1rem rgba(15, 53, 142, 0.1);
}

.section-faqs .accordion h4 {
	margin: 0;
	position: relative;
	cursor: pointer;
	color: #12204c;
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;
	z-index: 2;
}

.section-faqs .accordion .accordion-content {
/* display:none; MF Change For Non JQ Accordion */ 
}

.section-faqs .accordion .svg-right {
	position: absolute;
	right: 16.5px;
	top: 23px;
	cursor: pointer;
}

.section-faqs .accordion .svg-right svg {
	transition: all 0.3s ease;
	transform: rotate(0);
}

.section-faqs .accordion.open .svg-right svg {
	transform: rotate(-180deg);
}

.section-faqs .accordion.open h5 {
	transition: all 0.3s ease;
}

.section-faqs .accordion.open h5::after {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background: rgba(0, 0, 0, 0.07);
	margin-top: 20px;
}

.section-faqs .accordion.open .accordion-content p {
	margin-top: 20px;
}
