@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 {
    font-family: "Inter", sans-serif;
    color: #222;
}

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

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

.faqHero{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.faqHeroContainer{
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    min-height: 350px;
    background-image: url(./faq\ hero\ bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.overlayContainer{
    width: auto;
    height: auto;
    padding: 20px;
    text-align: center;
    background-color: #ffffff60;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 25px;
    backdrop-filter:  blur(10px);
}

.overlayContainer h1{
    font-size: 3rem;
    line-height: 4rem;
    color: #111;
    margin-bottom: 15px;
}

.overlayContainer p{
    max-width: 800px;
    text-align: center;
    margin-bottom: 20px;
}

.overlayContainer a{
    padding: 10px 25px;
    background: linear-gradient(125deg, #1e37af, #25228d);
    border-radius: 15px;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}


@media only screen and (max-width:767px){
    .faqHero{
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 10px;
    }

    .overlayContainer h1{
        font-size: 2rem;
        line-height: 2.5rem;
    }
}
