/*== == FAQs Page == ==*/

.f1-banner {
    background: #222;
    color: white;
}

.faq-fold {
    padding-bottom: 100px;
}

.accordion-page-wrapper {
    display: flex;
    padding: 100px 0px;
}

.accordion-section.active {
    display: block;
}

.accordion-page-wrapper .button-wrapper {
    display: flex;
    flex-direction: column;
    flex: 0 0 400px;
}

.accordion-page-wrapper .button-wrapper button {
    display: block;
    background: none;
    border-top: none;
    border-bottom: none;
    border-right: none;
    padding: 12px 15px;
    font-size: 20px;
    text-align: left;
    transition: all 500ms ease;
    border-color: #c9c9c9;
    color: black;
    cursor: pointer;
}

.accordion-page-wrapper .button-wrapper button.incomplete {
    color: #e51819;
}

.accordion-page-wrapper .button-wrapper button.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.accordion-section 
> .section-header {
    padding-top: 0px;
}

.accordion-section > .section-header i {
	color:var(--primary-color);
}

.extended .accordion-content {
    opacity: 1;
}

.section-header {
    padding: 20px 0px;
}

.section-header .title {
    position: relative;
}

.section-header .title::before {
    content:'';
    background-image:url('/wp-content/uploads/2023/12/title-shape-green.png');
    position:absolute;
    bottom:-20px;
    width:200px;
    height: 24px;
    background-position: bottom;
    background-repeat:no-repeat;
    background-size:contain;
    left:50%;
    transform:translatex(-50%);
}

.accordion-content a.readmore {
    width: 250px;
}
.accordion-section {
    padding: 20px;
    display: none;
    background: whitesmoke;
    width: 100%;
}

.f1-banner img {
    width: 100%;
    min-width: 1800px;
}

.faq-title {
    padding: 20px;
    margin: 20px 0px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.faq-title a {
    margin: auto;
}

.faq-title::before {
    content: '';
    position: absolute;
    background-color: #eae5dc61;
    width: 999%;
    height: 100%;
    top: 0px;
    left: -50%;
    pointer-events: none;
    z-index: -1;
}

.banner-content {
    position: absolute;
    top: 10px;
    right: 0;
    width: 70%;
    height: 100%;
    max-width: 1100px;
    padding: 0px 50px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.banner-content p {
	margin-bottom: 0px;
}


.accordion-fold {
    padding: 100px 0px;
    position: relative;
    padding-top: 50px;
    background: #333;
}
.accordion-fold.padding {
    padding: 50px 0px;
}

.accordion-fold .title {
    text-align: center;
    margin-bottom: 50px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 10px;
    padding: 15px 0px 20px;
    cursor: pointer;
}

h3.accordion-subtitle span {
    display: block;
    font-weight: 400;
    margin-top: 10px;
    font-size: 18px;
}

.accordion-btn p {
    font-size: 20px;
    position: absolute;
    right: 0px;
    top: 5px;
    margin: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.open-btn i {
}

.accordion-btn.opened p.close-btn {
    opacity: 1;
}

.accordion-btn.closed p.open-btn {
    opacity: 1;
}

.accordion-item {
    margin-bottom: 30px;
}

.accordion-fold-wrapper.extended{
    background: #e3e3e3;
    max-height: 2500px;
    padding: 10px;
    margin-bottom: -1px;
}

.accordion-fold-wrapper {
    max-height: 0px;
    transition: all 0.3s ease;
}

.accordion-content {
	transition: all 300ms ease;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	color: black;
	position: relative;
	border: solid 3px transparent;
	opacity: 0;
}

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

.accordion-content::after {
    content: '';
    background-image: url('/wp-content/uploads/2023/01/paint2.png');
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-size: contain;
    width: 100%;
    height: 100%;
    opacity: .3;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
}

.accordion-fold-wrapper.extended h3 {
    padding-top: 20px;
    border-style: solid;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    border-color: #cfb8b0;
    border-width: 2px;
}

.accordion-btn i {
    font-size: 24px;
    margin-top: 10px;
    cursor: pointer;
    color: var(--orange);
}

.accordion-header {
    font-size: 20px;
    padding-right: 60px;
    line-height: 28px;
    margin-bottom: 0px;
    color: var(--primary-color);
}
h3.accordion-subtitle {
    font-size: 26px;
}

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

.header-wrapper {
    font-weight: 500;
}
.header-wrapper:hover {
    opacity: 0.7;
}

.accordion-page-wrapper .button-wrapper button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.accordion-item:has(.active) .header-wrapper {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: var(--orange);
    color: var(--black);
}

.active .accordion-btn i {
    color: var(--primary-color);
}

		/*== == FAQs Page END == ==*/

/*== == FAQ RESPONSIVE == ==*/

@media (max-width:1024px) {

.accordion-page-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.accordion-page-wrapper .button-wrapper {
    flex: unset !important;
    max-width: 440px;
    gap: 10px;
    width: 100%;
}

.accordion-page-wrapper .button-wrapper button {
    border: none;
    text-align: center;
    background: var(--primary-color);
    color: white;
    width: 100%;
}

.accordion-page-wrapper .button-wrapper button.active {
    color: black;
    background: var(--secondary-color);
}
	
}

@media (max-width:400px) {

	.accordion-page-wrapper .button-wrapper button {
    font-size: 16px;
}

}

	/*=== == FAQ RESPONSIVE END == ==*/