@media (min-width: 991px) {
    .first-faq-banner {
        width: 100%;
        /* height: 500px; */
        background: linear-gradient(to bottom, #1b3cb4, transparent 75%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 70px;
    }
    .first-faq-banner .text h1 {
        font-family: "Yekan1"!important;
        font-size: 40px;
    }
    .first-faq-banner .img {
        width: 400px;
        margin-left: 50px;
    }
}

@media (max-width: 991px) {
    .first-faq-banner {
        width: 100%;
        /* height: 500px; */
        background: linear-gradient(to bottom, #1b3cb4, transparent 75%);
        padding-top: 70px;
        text-align: center;
    }
    .first-faq-banner .text h1 {
        font-family: "Yekan1"!important;
        font-size: 30px;
        margin-top: 30px;
    }
    .first-faq-banner .img {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .first-faq-banner .img .lottie-player {
        width: 200px;
    }
}


/* question-div */

@media (min-width: 991px) {
    .question-div {
        background-color: white;
        border: 2px solid #1b3cb4;
        border-radius: 10px;
        padding: 10px;
        margin-top: 30px;
    }
    .question-div .ques {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .question-div .ques h6 {
        font-size: 18px;
    }
    .question-div .ques i {
        font-size: 20px;
        color: gray;
    }
    .question-div .answer {
        margin-top: 20px;
        display: none;
    }
    .question-div .answer p {
        line-height: 30px;
        font-size: 16px;
        text-align: justify;
    }
}

@media (max-width: 991px) {
    .question-div {
        background-color: white;
        border: 2px solid #1b3cb4;
        border-radius: 10px;
        padding: 10px;
        margin-top: 30px;
    }
    .question-div .ques {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .question-div .ques h6 {
        font-size: 14px;
    }
    .question-div .ques i {
        font-size: 20px;
        color: gray;
    }
    .question-div .answer {
        margin-top: 20px;
        display: none;
    }
    .question-div .answer p {
        line-height: 30px;
        font-size: 16px;
        text-align: justify;
    }
}