.faq-list{
	overflow: visible;
}

.faq-list .tab {
    width: 100%;
    color: var(--text-color);
    background: white;
    margin-bottom: 0.9rem;
    box-sizing: border-box;
    transition: all 500ms ease;
    border-radius: .25rem;
    position: relative;
    box-shadow: 0px 2px 4px 0px #00000014;
}

.faq-list .tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-list .tab-label {
    justify-content: space-between;
    background: transparent;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    padding: 1rem 2.5rem;
   	align-items: center;
    font-size: 1.25rem;
    transition: all 500ms ease;
    color:var(--purple);
}



.faq-list .tab-label span{
	display: flex;
  	gap: 3rem;
}

.faq-list .tab-label span strong{
	font-weight: 600;
}



.faq-list .tab-label::after {
    content: url(https://surajgroup.in/wp-content/uploads/2025/01/next-2.png);
    width: 20px;
    height: 20px;
    text-align: center;
    transition: 250ms ease;
    font-size: 30px;
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    transform: rotate(0deg);
}





.faq-list .tab input:checked~.tab-label::after {
    transform: rotate(180deg);
}

.faq-list .tab-content {
    max-height: 0;
    color: var(--text-color);
    transition: max-height 1s ease-in-out;
    overflow: hidden;
    padding: 0px 2.5rem;
    
}


.faq-list .tab input:checked~.tab-content {
    max-height: 400px;
}
.faq-list .tab .tab-content p{
    margin:0px !important;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 300;
    border-top: 1px solid #DCDCDC;
}

.faq-list .tab-label>span{
    display: flex;
    gap: 1rem;
    align-items: start;
    justify-content: start;
}

@media screen and (max-width: 768px){
   #faq_item .wp-block-group:last-child{
    padding: 0;
   }
   .faq-list .tab-label {
        font-size: 1.125rem;
        padding: .75rem;
        gap:.5rem;
   }
   .faq-list .tab-label {
    font-size: 1.125rem;
    padding: .75rem;
}
.faq-list .tab-label>span{
    gap:.5rem;
}
}