/* insetted faq list */
#header h1 {
    margin-bottom: .5em;
}
#header {
    padding-bottom: 0;
}
.question-ul {
    border-top: solid 1px var(--headerColor);
}
.question-ul .question-li {
    list-style: none;
    border-bottom: solid 1px var(--headerColor);
    padding: 0.5rem 0;
}
.question-ul .question-li {
    list-style: none;
    border-bottom: solid 1px var(--headerColor);
    padding: 1rem 0;
    padding-right: 0.5rem;
    height: auto;
}
.question-ul .question-li .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-width: none;
}
.question-ul .question-li .title {
    transition: color 0.5s ease;
}
.question-ul .question-li.opened .content {
    max-height: 250px;
}
.question-ul .question-li .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.question-ul .question-li .drop-arrow {
    transition: transform 0.5s ease;
}
.question-ul .question-li.opened .drop-arrow {
    transform: rotate(180deg);
}