/*------------------FAQ----------------------*/


 .faq_list{
	 text-align: left;
    padding: 0;
    list-style: disc;
    list-style-position: inside;
 }


.faq h6 {
	 font-size: 45px;
	 font-weight: 700 !important;
	 color: #1A202C;
	 margin-bottom: 25px;
	 text-align:center;
}
 .faq #accordion {
	 width: 100%;
	 padding-top: 1rem;
	 justify-content: space-between;
	 display: flex;
	 flex-wrap: wrap;
}
 .faq .accordian-item {
	 border: 1px solid #5e5e5e;
	 border-radius: 12px;
	 margin: 0px;
	 margin-bottom: 20px;
	 padding: 5px 15px;
}
 .faq .accordion-toggle {
	 cursor: pointer;
	 height: 65px;
	 margin: 0;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 line-height: 1;
	 transition: 250ms all ease;
	 -webkit-transition: 250ms all ease;
	 -moz-transition: 250ms all ease;
	 -ms-transition: 250ms all ease;
	 -o-transition: 250ms all ease;
}
 .faq .accordion-toggle .button {
	 position: relative;
	 width: 100%;
	 text-align: left;
	 font-size: 15px;
	 font-weight: 600;
	 line-height: 24px;
	 color: #1A202C;
}
 .faq .accordion-toggle .button:before, .faq .accordion-toggle .button:after {
	 content: "";
	 position: absolute;
	 background-color: #1A202C;
	 transition: transform 0.25s ease-out;
}
 .faq .accordion-toggle .button:before {
	 top: 3px;
	 left: unset;
	 width: 2px;
	 height: 15px;
	 right: 6px;
}
 .faq .accordion-toggle .button:after {
	 top: 9px;
	 right: 0;
	 width: 16px;
	 height: 2px;
}
 .faq .accordion-toggle.opened .button {
	 cursor: pointer;
}
 .faq .accordion-toggle.opened .button:before {
	 transform: rotate(90deg);
}
 .faq .accordion-toggle.opened .button:after {
	 transform: rotate(180deg);
}
 .faq .accordion-toggle.opened .button:before, .faq .accordion-toggle.opened .button:after {
	 background-color: #ccc;
}
 .faq .accordion-content {
	 display: none;
}
 .faq .accordion-content p {
	 font-size: 15px;
	 text-align: left;
	 color: #1A202C;
}
 .faq .accordion-content.opened {
	 border-color: #ccc;
}

.faq .accordion-content ul{
	list-style-position: inside;
}