#faq-section {
	counter-reset: my-sec-counter;
}

.category-sec {
	margin-bottom: 32px;
}

.category-sec:last-child {
	margin-bottom: 0;
}

.category-sec h3{
	font-size: 24px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 16px;
}

.faq-accordion {
	padding-left: 15px;
}

.faq-accordion .faq-title {
	background-color: #F0F0F0;
	padding: 8px 16px;
	border-radius: 5px;
	margin-bottom: 20px;
	color: #000;
	border: 0;
	display: flex;
}

.faq-accordion .faq-title:nth-last-of-type(2){
	margin-bottom: 0;
}

.faq-accordion .faq-title a {
	text-decoration: none;
	color: #000;
}

.faq-accordion .faq-title::before {
	counter-increment: my-sec-counter;
	content: ""counter(my-sec-counter) ". ";
	margin-right: 14px;
}

.faq-accordion .faq-title.ui-state-active {
	background-color: #ff4500;
	margin-bottom: 20px;
}

.faq-accordion .faq-title.ui-state-active, .faq-accordion .faq-title.ui-state-active a {
	color: #fff;
}

.faq-accordion .faq-title:hover a {
	text-decoration: underline;
	text-decoration-thickness: 0.5px;
}

.faq-accordion .faq-content {
	padding: 0 0 25px 45px;
	border: 0;
}

.faq-accordion .faq-content:nth-last-of-type(1){
	padding-bottom: 0;
}

.faq-accordion .faq-content p {
	margin-bottom: 16px;
}

.faq-accordion .faq-content p strong{
	font-weight: 600;
}

.faq-accordion .faq-content p:last-child {
	margin-bottom: 0;
}

.faq-accordion .faq-content ul, .faq-accordion .faq-content ol {
	margin-bottom: 8px;
}

.faq-accordion .faq-content li {
	line-height: 27px;
	margin-bottom: 8px;
	position: relative;
	padding-left: 18px;
}

.faq-accordion .faq-content li::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 10px;
	background: #000;
	margin-right: 12px;
	display: inline-block;
	top: 12px;
	left: 0;
    position: absolute;
}

.faq-accordion .faq-content p img {
	display: inline-flex;
	justify-self: flex-start;
}
.faq-accordion .faq-content p img + img{
	float: right;
}

/* ---------------About page Media Query -------------------- */
@media screen and (max-width:1119px) {
}

@media screen and (max-width:1023px) {
	.faq-accordion .faq-content p img{
		display: block;
	}
	.faq-accordion .faq-content p img + img{
		float: none;
		margin-top: 8px;
	}
}

@media screen and (max-width:767px) {
	.category-sec h3{
		font-size: 20px;
	}
	.faq-accordion .faq-content {
		padding: 0 0 25px;
	}
}

@media screen and (max-width:639px) {
}

@media screen and (max-width:479px) {
}

/* ---------------About page Media Query -------------------- */