
/************************************/
/***      28. FAQs Page css       ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	border: 1px solid var(--background-accent-color);
	box-shadow: 0px 4px 30px 0px rgba(15, 23, 42, 0.04);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--accent-color);
}

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	transform: translateY(-50%);
    background: url('../../images/arrow-dark.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
	transform: translateY(-50%) rotate(45deg);
}

.our-faq-section.page-faq-accordion{
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child{
    margin-bottom: 0;
}


/************************************/
/***       Responsive css        ***/
/************************************/

@media only screen and (max-width: 991px) {
    .page-faqs {
        padding: 50px 0;
    }

    .faq-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        margin-bottom: 30px;
    }

    .faq-catagery-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .faq-catagery-list ul li a::after {
        width: 22px;
        height: 22px;
    }

    .our-faq-section.page-faq-accordion {
        margin-bottom: 30px;
    }

}

@media only screen and (max-width: 767px) {
    .faq-catagery-list {
        padding: 20px;
    }

}
