@font-face {
    font-family: "Montserrat";
    src: url(/v2/assets/font/Montserrat/Montserrat-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "MontserratSemiBold";
    src: url(/v2/assets/font/Montserrat/Montserrat-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "MontserratMedium";
    src: url(/v2/assets/font/Montserrat/Montserrat-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}
/* @font-face {
    font-family: "granville-bold";
    src: url(/v2/assets/font/Granville/Granville-Bold.otf) format("opentype");
    font-weight: 400;
    font-style: normal;
} */
@font-face {
    font-family: "granville-bold";
    src: url(/v2/assets/font/albra/Albra-Bold.woff2) format("opentype");
    font-weight: 400;
    font-style: normal;
}

.faqPageHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 12rem;
    margin-bottom:  2rem;
}

.aideContactTitle {
    font-family: 'granville-bold' !important;
    font-size: 35px;
    text-align: center;
    margin: 20px auto;
    color: #6C4DFF;
}

.faqSubTitle {
    text-align: center;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.faqItems {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
    column-gap: 20px;
    -webkit-column-gap: 20px;
}

.faqItem   {
    height: 180px;
    width: 295px;
    border-radius: 0 25px 0 25px;
    background-color: #F2F2F3;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
}
.faqItem:hover {
    background-color: #6C4DFF;
}

.faqItem:hover > .faqItemSvg .logo {
    filter: invert(100%) sepia(0%) saturate(7483%) hue-rotate(178deg) brightness(130%) contrast(97%) !important;
}

.faqItem:hover h2 {
    color: #FFFFFF;
}
@media not (min-width: 481px) {
    .faqItem:hover {
        background-color: #6C4DFF;
    }

    .faqItem:hover h2 {
        color: #FFFFFF;
    }

    .faqItem:hover svg,path {
        stroke: #FFFFFF;
    }
}


.active {
    background-color: #6C4DFF;
    color: #ffffff;
}

.active .logo {
    filter: invert(100%) sepia(0%) saturate(7483%) hue-rotate(178deg) brightness(130%) contrast(97%);
}

.active h2 {
    color: #FFFFFF;
}

.active svg path  {
    stroke: #FFFFFF;
}

.faqItemSvg {
    height: 50%;
    display: flex;
    align-items: flex-end;
}

.faqItemTitle {
    font-family: 'granville-bold';
    font-size: 21px;
    font-weight: 500;
    color: #4A4A4A;;
    text-align: center;
    padding: 0 6rem;
    display: flex;
    align-items: center;
    height: 50%;
}

.faqItemSvg1 {
    font-size: 50px;
}

.faqItemDescription {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #6C4DFF;
    border-radius: 0 25px 0 25px;
    width: 100%;
    min-height: 140px;
}

.faqItemSubTitle {
    font-family: 'granville-bold';
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.faqItemSubParagraph {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 3rem;
}

.fieldFaqQuestion {
    width: 100%;
    background-color: #F2F2F3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 25px 0 25px;
    min-height: 73px;
    margin-bottom: 20px;
    cursor: pointer;
    font-family: 'MontserratMedium';
    font-size: 17px;
}



.field-faq-answer {
    display: none;
    padding: 0 30px 30px;
    font-family: 'Montserrat' !important;
}

.titleSection {
    font-family: 'granville-bold';
    font-size: 21px;
    font-weight: 700;
    color: #4A4A4A;
    margin: 50px 0 15px 0;
}

.hiddenText {
    display: none;
}

.faq-question {
    padding: 0 0 0 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 60px);
    min-height: 73px;
    font-family: 'MontserratMedium' !important;
}

.faq-question-title {
    font-size: 15px;
    color: #0a0a0a;
    font-family: 'MontserratMedium' !important;
}

.open p {
    color: #6C4DFF;
    font-family: 'MontserratMedium' !important;
}

.open .rotateSvg {
    transform: rotate(180deg);
}

.loaderSvg {
    width: 50px;
    margin: auto;
    animation: rotate 1s linear infinite;
    display: none;
}
.loaderSvg circle {
    stroke: #6C4DFF;
    animation: dash 1.5s ease-in-out infinite;
    stroke-width:  3px;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@media screen and (max-width: 480px) {
    .loaderSvg circle {
        stroke: #4A4A4A;
        animation: dash 1.5s ease-in-out infinite;
        stroke-width:  3px;
    }

    .aideContactTitle {
        margin: 15px auto;
    }

    .visible h2 {
        display:none !important;
    }

    .faqItemDescription {
        border-radius: 0px 0px 0px 0px;
        min-height: 140px;
    }
    .faqItemSubParagraph {
        padding: 20px 0;
    }

    .faqSubTitle {
        padding: 0 20px;
    }
    .fieldFaqQuestion {
        min-height: 73px;
    }
    .field-faq-answer {
        padding: 0 17px 30px;
    }
    .faq-question {
        flex-direction: row;
        width: 95%;
        margin: auto;
        padding: 5px 5px;
        min-height: 60px;
    }
    .faqPageHeader {
        height: 160px;
        justify-content: flex-start;
        margin-bottom: 0px;
    }
    .open .rotateSvg {
        transform: rotate(180deg);
    }
    .loaderSvg {
        width: 40px;
    }
}

.field-faq-answer ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0px;
}

.field-faq-answer li {
    margin-bottom: 5px;
}

.field-faq-answer a {
    text-decoration: underline;
}






