@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* primary color #261fb3 */

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

#maincontainer {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a,
p,
span, small , ul, li{
    font-family: "Inter", sans-serif;
    color: #222;
}

a {
    text-decoration: none;
    color: #222;
}

::-webkit-scrollbar {
    display: none;
}

/* faq section */
.faq_section {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.faq_container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    max-width: 1400px;
    padding: 15px 25px;
    padding: 10px;
}

.faq_container>h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.faq_container>p {
    font-size: 18px;
    color: #222;
    opacity: .9;
    text-transform: capitalize;
    text-align: start;
    /* max-width: 800px; */
}

.faq_section {
    padding: 60px 0;
    /* background-color: #f9f9f9; */
}

.faq_container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.faq_h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.faq_p {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center;
}

.faq_items {
    text-align: left;
}

.faq_item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    cursor: pointer;
    /* width: 800px; */
    width: 1400px;
    max-width: 1400px;
}

.faq_question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.faq_question h4 {
    margin: 0;
    font-size: 1.1rem;
    /* color: #222; */
    color: #25228d;
    opacity: .9;
    font-weight: 650;
}

.faq_answer p, .faq_answer ul li {
    font-size: 16px;
    opacity: .9;
    color: #222;
    max-width: 1300px;
}

/* .faq_answer ul li{
    list-style:disc !important;
    margin-bottom: 2px;
} */

.faq_icon {
    font-size: 1.5em;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}


.faq_answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease, opacity 0.5s ease;
    -o-transition: max-height 0.5s ease, opacity 0.5s ease;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}
/* faq section */



/* Mobile responsive CSS for FAQ section */
@media (max-width: 768px) {

    .faq_section,
    .faq_items {
        width: 100%;
        height: auto;
        background: none;
    }

    .faq_container {
        width: 100%;
        height: auto;
        /* text-align: center; */
    }

    .faq_container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .faq_section {
        width: 100%;
        padding: 40px 20px;
        height: auto;
    }

    .faq_items {
        width: 100%;
        max-width: 100%;
    }

    .faq_container {
        width: 100%;
    }

    .faq_h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px;
        text-align: center;
    }

    .faq_p {
        font-size: 1rem !important;
        margin-bottom: 30px;
        text-align: center;
    }

    .faq_item {
        padding: 15px 0;
    }

    .faq_question h4 {
        font-size: 1rem;
        width: auto;
        max-width: 100%;
    }

    .faq_icon {
        font-size: 1.2em;
    }

    .faq_item {
        width: 100%;
        max-width: 100%;
    }

    .faq_answer p {
        font-size: 0.9rem;
        padding: 10px 0;
        width: auto;
        max-width: 100%;
    }

    .faq_answer p {
        width: 100%;
        max-width: 100%;
    }
}