.faq-container {
    /* height: 109.6875rem; */
    background-color: var(--primaryblue-7);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-container .faq-header {
    color: white;
    font-family: "Frontspring Demo Chesna Grotesk Bold";
    font-size: 2.25rem;
    font-weight: 700;
}

.faq-details .faq-box {
    background-color: white;
    height: 34rem;
}

/* ACCORDION */
.accordion-wrapper h1{
    text-align:center;
}

.accordion-wrapper input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    margin:0 auto;
}

.accordion {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 1.25rem 1.25rem;
}

.accordion:last-child{
    margin-bottom: 0;
}

.accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--secondoryyellow-3);
    cursor: pointer;
    color: var(--primaryblue-10);
    transition: 0.3s;
    font-family: "Plus Jakarta Sans Bold";
    font-size: 1.5rem;
    font-weight: bolder;
    padding-left: 3rem;
}

.accordion-label:hover {
    background: rgb(250, 216, 40);
}

.accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-content {
    max-height: 0;
    padding: 0 16px;
    background: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: rgba(4,57,94,.7);
    font-size: 1.25rem;
    font-family: "Plus Jakarta Sans Bold";
}

input:checked + .accordion-label {
    background: rgb(250, 216, 40);
}

input:checked + .accordion-label::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

input:checked ~ .accordion-content {
    max-height: 100vh;
    padding: 3rem;
}

.accordion-content a {
    text-decoration: underline;
    color: var(--primaryblue-10);
}

.accordion-content a:visited {
    color: var(--primaryblue-10);
}

.accordion-content a:hover {
    color: var(--primaryblue-8);
}

.nested-list > li {
    margin-left: 1rem;
}
/* END ACCORDION */

/* RESPONSIVE FAQ */
@media (max-width: 500px) { 
    .faq-container {
        padding: 5rem 3rem;
    }

    .faq-header {
        text-align: center;
    }

    .faq-header h1 {
        font-size: 1.25rem;
    }

    .accordion-label {
        font-size: 0.825rem;
        padding-left: 1rem;
    }

    .accordion-content {
        font-size: 0.625rem;
        /* padding: 2rem !important; */
    }

    input:checked ~ .accordion-content {
        max-height: 100vh;
        padding: 1rem 2rem;
    }
}
/* END RESPONSIVE FAQ */