@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap');

._faq-section_{
    padding-top: 50px;
    /* padding-bottom: 50px; */
}
._faq-section_{
    margin-top: 50px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    /* background-color: red; */
}

._faq-section_ ._faq-heading_{
    font-size: 40px;
    position: relative;
}
/* ._faq-section_ ._faq-heading_::after{
    content: '';
    height: 4px;
    width: 140%;
    background-color: #E97D37;
    position: absolute;
    left: -15px;
    bottom: -5px;
} */
._faq-section_ ._faq-subsection_{
    width: 100%;
    /* background-color: yellow; */
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
    
}
._faq-section_ ._faq-subsection_ img{
    /* background-color: blue;  */
    width: 35%;
}
._faq-section_ ._faq-subsection_ ._faq-container_{
    /* background-color: yellow; */
    /* padding: 20px; */
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

._faq-section_ ._faq-subsection_ ._faq-container_ ._wrapper_
{
    width: 100%;
    /* height: fit-content; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    
}
._faq-section_ ._faq-subsection_ ._faq-container_ ._wrapper_ ._toggle_{
    width: 100%;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    background-color: #ffd9ad;
    text-align: left;
    font-weight: 700;
    gap: 30px;
    line-height: 32px;
    /* box-shadow: 0px 0px 7px #0000001f; */
    transition: all 0.1s ease;
}
/* ._faq-section_ ._faq-subsection_ ._faq-container_ ._wrapper_ ._toggle_:hover{
    background-color: #ffce97;
} */
._faq-section_ ._faq-subsection_ ._faq-container_ ._wrapper_ ._content_{
    width: 100%;
    height: 0;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #0000001f;
    transition: all 0.2s ease-in-out;
}
._faq-section_ ._faq-subsection_ ._faq-container_ ._wrapper_ ._content_ p{
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    margin: 20px;
    /* text-align: justify; */
}

._icon_{
    
    font-size: 20px;
    font-weight: 700;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

._icon_.active{
    /* color: #E97D37; */
    transform: rotate(135deg);
}

