:root {
    --font-family: 'Monseratt', sans-serif;
    --orange: #fd753fba;
    --bright-orange: #FD763F;
    --blue: #3498db;
    --top-banner-height: 40px;
}

/* FAQ page starts */
.faq-body-container {
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    height: 100%;
    padding: 63px 10px 10px 10px;
    background-color: black;
    margin: var(--top-banner-height) 15% 15% 15%;
}

.faq-section {
    border-top: 1px solid #ddd;
    padding: 2%;
    height: 10%;
}

.faq-body-container h1 {
    z-index: 1;
    background-color: black;
    position: sticky;
    padding: 10px;
    top: var(--top-banner-height);
    color: var(--blue);
    text-align: center;
    position: sticky;
    text-align: center;
    z-index: 1;
    font-family: var(--font-family);
    font-size: 30px;
    line-height: 1em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 800;
}

.faq-body-container h2 {
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font: 18px / 1.2em raleway, sans-serif;
    margin: 0px !important;
    padding: 0px !important;
    display: flex;
    align-items: center;

}

.faq-body-container p,
ul {
    padding: 10px;
    display: none;
    color: rgb(163, 195, 223);
    font: 14px / 1.2em raleway, sans-serif;
}

.faq-body-container a {
    color: blue;
}


.faq-section p,
.faq-section ul {
    display: none;
}

.faq-section.active p,
.faq-section.active ul {
    display: block;
}

/* .faq-section__arrow {
    background-repeat: no-repeat;
    display: inline-block;
    width: 14px;
    height: 8px;
    background-image: url('./assets/right-arrow.png');
    background-position: right;
    background-size: contain;
    margin-left: 200px;
    padding-right: 5%;
    margin-bottom: 10px !important;
    overflow: hidden;
} */
.faq-section__arrow {
    background-repeat: no-repeat;
    display: inline-block;
    width: 14px;
    height: 8px;
    background-image: url('./assets/right-arrow.png');
    background-position: right;
    background-size: contain;
    margin-bottom: 10px !important;
    overflow: hidden;
    margin-left: auto;
}

.faq-section__arrow.rotate {
    transform: rotate(180deg);
}

/* responsive faq page */
@media only screen and (max-width: 950px) {
    .faq-body-container {
        margin: 0;
        height: auto;
        min-height: 180vh;
    }

    .faq-body-container h1 {
        padding-top: 10%;
        margin-bottom: 10%;
        font-size: 30px;
    }

    .faq-body-container h2 {
        font-size: 22px;
        padding: 10px 5%;
    }

    .faq-body-container p,
    ul {
        padding: 10px 5%;
        font-size: 18px;
    }

    .faq-section__arrow {
        margin-left: auto;
        margin-right: 5%;
    }
}

/* responsive faq page ends */