@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&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */
/* font-family: "Playfair Display", serif; */

/* CSS Boilerplate */

/* Reset some default browser styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set base font and background */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    /* font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5; */
    background-color: #fff;
    color: #222;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    /* margin-bottom: 0.5em; */

}

/* Links */
a {
    color: #222;
    text-decoration: none;
    cursor: pointer;
}

.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
}



/* faq section */
.faqSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;

    .faqContainer {
        width: 100%;
        height: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        >h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        >h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        .faqQuestions {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
            margin-bottom: 40px;

            .faqCard {
                width: 100%;
                max-width: 1000px;
                height: auto;
                background-color: #fdfdfd;
                padding: 15px;
                border: 1px solid #e8e8e8;
                box-shadow: 4px 4px 30px #3B007010;
                border-radius: 15px;
                transition: all .3s ease-in-out;

                h3 {
                    color: #555;
                    margin-bottom: 5px;
                }

                p {
                    color: #888;
                    font-weight: 400;

                    strong {
                        color: #888;
                        font-weight: 500;
                    }
                }
            }

            .faqCard:hover {
                border: 1px solid #3B0070;
                background: #fff;
                box-shadow: 10px 10px 40px #18181825;
            }
        }
    }
}


@media only screen and (max-width:768px) {
    .faqSection {
        padding: 10px;
        margin: 50px 0;
        /* background-color: #fafafa; */

        .faqContainer {
            padding: 0;
            margin: 40px 0;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
                text-align: center;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 15px;
                text-align: center;
            }

            .faqQuestions {
                margin-top: 20px;

                .faqCard {
                    box-shadow: 5px 5px 60px #00000002;
                }
            }

        }
    }
}

/* faq section */