.commonFAQWrap {
    &.faqBlock {
        .faqWrap {
            .eachFaq {
                overflow: hidden;
                border-radius: 10px;

                &:not(:last-child) {
                    margin-bottom: 24px;
                }

                .eachFaqInner {
                    .faqTitle {
                        cursor: pointer;
                        font-size: 18px;
                        transition: 0.3s;
                        overflow: hidden;
                        margin-bottom: 0;
                        position: relative;
                        border-radius: 10px;
                        padding: 25px 85px 25px 25px;
                        border: 1px solid #00000025;
                        font-family: "Poppins", sans-serif;

                        span {
                            font-size: 18px;
                            margin-right: 8px;
                            display: inline-block;
                            text-transform: uppercase;
                        }

                        &:after {
                            width: 40px;
                            height: 40px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            right: 25px;
                            font-size: 40px;
                            top: 50%;
                            transform: translateY(-50%);
                            position: absolute;
                            transition: 0.6s;
                            font-family: fontawesome;
                            font-weight: 900;
                            -moz-osx-font-smoothing: grayscale;
                            -webkit-font-smoothing: antialiased;
                            display: var(--fa-display, inline-block);
                            font-style: normal;
                            font-variant: normal;
                            line-height: 1;
                            text-rendering: auto;
                            content: "\f055";
                            color: #0C0056;
                        }

                        &:hover {
                            color: #fff;
                            background-color: #0C0056;

                            span,
                            &:after {
                                color: #fff;
                            }
                        }
                    }

                    .faqCont {
                        display: none;

                        .fqContInner {
                            padding: 0 25px 25px 25px;
                        }
                    }
                }

                &.active {
                    background-color: #0C0056;

                    .eachFaqInner {
                        .faqTitle {
                            color: #008fff;
                            font-weight: 600;

                            &:after {
                                color: #fff;
                                content: "\f056";
                            }
                        }

                        .faqCont {
                            display: block;

                            .fqContInner {
                                * {
                                    color: #fff;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.faqBlock {
    .moreEnquireRow {
        background-color: #E0EAF0;
        border-radius: 25px;
        padding: 90px 30px 50px;

        .faqWrap {
            .eachFaq {
                .eachFaqInner {
                    .faqTitle {
                        border: 1px solid #008FFF60;
                        color: #fff;

                        &:hover {
                            background-color: transparent;
                        }

                        &:after {
                            color: #008FFF;
                        }
                    }
                }

                &.active {
                    background-color: #008FFF;

                    .eachFaqInner {
                        .faqTitle {
                            &:after {
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}

.messageImg {
    left: 0;
    right: 0;
    top: -30px;
    width: 80px;
    height: 77px;
    margin: auto;
    position: absolute;
}

#contactPopup {
    padding: 40px 25px;

    h4 {
        font-size: 25px;
        margin-bottom: 20px;
        color: #0C0056;
        text-align: center;
    }

    .popup-form-wrapper {
        .formWrap {
            .submitBox {
                .wpcf7-spinner {
                    position: absolute;
                    right: -120px;
                }
            }
        }
    }
}


/* Responsive */

@media (max-width: 1024px) {
    .commonFAQWrap {
        &.faqBlock {
            .faqWrap {
                .eachFaq {
                    .eachFaqInner {
                        .faqTitle {
                            padding: 18px 75px 18px 20px;

                            &:after {
                                width: 32px;
                                height: 32px;
                                top: 18px;
                                transform: none;
                                font-size: 32px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .commonFAQWrap {
        .headingWrap {
            padding-bottom: 20px;
        }
    }

    .faqBlock_2 {
        .sectionInner {
            .moreEnquireRow {
                .faqWrapInner {
                    text-align: center;
                }

                .btnWrap {
                    text-align: center;
                }
            }
        }
    }

    .faqBlock {
        .moreEnquireRow {
            padding: 70px 30px 50px;
        }
    }
}