/*faq*/

.ParentOfFaqcontainer{
    display: flex;
    justify-content: center;
}

.faqcontainer{
    width: 76%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Secondfaqcontainer{
    width: 76%;
    display: flex;
    justify-content: space-between;
}

.parentOfleftChildOfFaq{
    width: 50%;
    display: flex;
    justify-content: center;
}

.parentOfrightChildOfFaq{
    width: 50%;
    display: flex;
    justify-content: center;
}

.leftChildOfFaq{
    width: 100%;
}

.rightChildOfFaq{
    margin-top: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1px;
}

.rtImagforFaq{
    object-fit: cover;
}

@media (max-width: 1130px){
    .faqcontainer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .parentOfleftChildOfFaq{
        width: 100%;
    }

    .parentOfrightChildOfFaq{
        width: 90%;
    }

    .leftChildOfFaq{
        display: flex;
        align-items: center !important;
    }

    .rightChildOfFaq{
        margin-top: 0;
    }

    .Secondfaqcontainer{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap-reverse;
    }
}