/* Styles for FAQ & Support page */
footer {
    margin-top: -60px;
}
article {
    height: 100vh;
    overflow: hidden;
}
/* faq bg image container */
.banner-1-container {
    position: relative;
    width: 100%; height: 100vh;
    overflow: hidden;
}
.banner-1 {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-around;
    width: 100%; height: 80vh;
    max-width: 1344px;
    margin: 100px auto;
}
.banner-1-img {
    position: absolute;
    display: flex;
    width: 100%; height: auto;
    min-height: 1073px; min-width: 1920px;
    z-index: 0;
}

/* styles for faq header */
.header-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
}
.header-text h5 {
    position: relative;
    display: flex;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    color: white;
    width: min-content;
}
.header-text h5:last-child {
    padding-top: 20px;

}
/* styles for faq contents */
.faq-content {
    position: relative;
    padding-right: 69px;
    width: 48%; height: 60vh;
    margin: auto 0;
    overflow-x: hidden;
    overflow-y: scroll;
}
.section-container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.section-name {
    font-weight: 600;
    font-size: 24px;
    background-color: transparent;
    color: #EA81FF;
    width: 100%; height: 36px;
}
.question {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18px;
    text-align: left;
    padding: unset;
    width: 100%; height: 60px;
    color: white;
    background-color: transparent;
    border-width: 1px;
    border-bottom: unset;
    border-left: unset;
    border-right: unset;
    border-color: white;
    outline: none;
    cursor: pointer;
    transition: 0.4s;
}
.question:first-of-type {
    border-top: unset;
}
.active, .question:hover {
    background-color: transparent;
} 
.question:after {
    content: '\002B';
    font-weight: bold;
    color: white;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2212";
}

.answer {
    font-size: 16px;
    color: white;
    background-color: transparent;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.answer p {
    margin: 6px 0;
}
.answer:last-child {
    border-bottom: 1px solid white;
}

/* styles for scrollbar */
/* width */
.faq-content::-webkit-scrollbar {
    width: 10px;
}
/* Track */
.faq-content::-webkit-scrollbar-track {
    background: #555; 
}   
/* Handle */
.faq-content::-webkit-scrollbar-thumb {
    background: #888; 
} 
/* Handle on hover */
.faq-content::-webkit-scrollbar-thumb:hover {
    background: #f1f1f1; 
}

@media only screen and (max-width: 1024px) {
    footer {
        margin-top: unset;
    }
    article {
        height: unset;
        overflow: unset;
    }    
    .banner-1 {
        flex-direction: column;
        height: unset;
        margin: unset;
    }
    .header-text {
        font-size: 1vw;
        width: unset;
        margin: 100px auto 20px auto;
    }
    .header-text h5 {
        font-size: 40px;
        width: max-content;
        margin: 0 auto;
    }
    .faq-content {
        padding-right: 20px;
        width: 80vw; height: 50vh;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {

    body {
        font-size: 0.8em;
    }
    .navbar.is-fixed-top {
        display: none;
    }
    body.has-navbar-fixed-top {
        padding: 0;
    }

    .banner-1 {
        height: 100%;
    }
    .header-text {
        width: 90%;
        margin: 15px auto;
    }
    .header-text h5 {
        font-size: 6vw;
    }
    .faq-content {
        height: 70vh;
        margin: auto;
    }
    .section-name {
        padding: 0 15px;
        font-size: 4vw;
    }
    .question {
        font-size: 2.5vw;
        padding: 0 15px;
    }
    .answer {
        font-size: 2.5vw;
        padding: 0 15px;
    }

    .footer-container {
        display: none;
    }
}