.ourteam-wrapper p {
    width: 77%;
}

.faq-all .accordion-button:not(.collapsed) {
    color: var(--default-text-color);
    background-color: var(--second-text-color);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.faq-all .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("../img/plus.png");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}
.faq-all .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 14px;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}
section.faq-sec {
    padding: 100px 0px;
}

.faq-all .accordion-item {
    background-color: #fff;
    border: unset;
    border-bottom: 1px solid #7070708c;
}
/* Mobile Responsive Starts Here  */
@media(max-width:575px){
	section.faq-sec {
        padding: 30px 0px;
    }
    .ourteam-wrapper p {
        width: 100%;
    }
    .faq-all .accordion-button::after {
        width: 1rem;
        height: 1rem;
        background-size: 1rem;
    }
    .faq-all .accordion-button {
        font-size: 12px;
    }
    .accordion-body {
        font-size: 12px;
    }
}
/* Mobile Responsive Ends Here  */