/* Bible Talk Section*/

.bible-talk-section{
    display: flex;
    max-width: 1366px;
    margin: 144px auto 80px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 80px;
}

.bible-talk-section .section-title-box{
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.bible-talk-section .section-title-box .title{
    align-self: stretch;
    color: var(--black, #000);
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.bible-talk-section .section-title-box .subtitle{
    align-self: stretch;
    color: var(--black-40, rgba(0, 0, 0, 0.40));
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bible-talk-section .cover{
    height: 540px;
    align-self: stretch;
    border-radius: 4px;
    background-image: url(../element/image/bible-talk-cover.jpg);
    background-size: cover;
    background-position: center bottom 20%;
}

.bible-talk-section .concepts{
    display: flex;
    gap: 24px;
    align-self: stretch;
}

.bible-talk-section .concepts .concept{
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    border-radius: 8px;
    border: 3px solid var(--main, #F2C700);
    background: var(--white, #FFF);
    flex: 1 0 0;
}

.bible-talk-section .concepts .concept .heading{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.bible-talk-section .concepts .concept .heading .title{
    color: var(--main-dark-6, #181400);
    font-family: "Noto Sans TC";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 30.8px */
    padding-right: 48px;
    text-align: center;
}

.bible-talk-section .concepts .concept .heading .icon{
    width: 48px;
    height: 48px;
    background-size: cover;
}

.bible-talk-section .concepts .concept .description{
    align-self: stretch;
    text-align: center;
    color: var(--black-80, rgba(0, 0, 0, 0.80));
    font-family: "Noto Sans TC";
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%; /* 22.4px */
}

.bible-talk-section .concepts .concept.together .icon{
    background-image: url(../element/icons/together.png);
}

.bible-talk-section .concepts .concept.hq .icon{
    background-image: url(../element/icons/hq-interaction.png);
}

.bible-talk-section .concepts .concept.party .icon{
    background-image: url(../element/icons/party.png);
}

.bible-talk-section .more{
    display: flex;
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.bible-talk-section .more .caption{
    align-self: stretch;
    color: var(--black-40, rgba(0, 0, 0, 0.40));
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
}

.bible-talk-section .more .btn{
    display: flex;
    padding: 12px 12px 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--main, #F2C700);
}

.bible-talk-section .more .btn .btn-text{
    color: var(--black, #000);
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.bible-talk-section .more .btn .btn-icon-r{
    width: 24px;
    height: 24px;
    background-image: url(../element/image/arrow-right.png);
    background-size: contain;
}

.bible-talk-section .more .btn:hover{
    background: var(--main-dark-5, #302800);
    cursor: pointer;

    .btn-text{
        color: var(--main, #F2C700);
    }
    .btn-icon-r{
        background-image: url(../element/image/arrow-right-hover.png);
    }
}

@media(max-width:1366px){
    .bible-talk-section{
        margin: 120px auto 80px;
        gap: 24px;
        padding: 0 48px;
    }
    .bible-talk-section .section-title-box .title{
        font-size: 36px;
    }
    .bible-talk-section .section-title-box .subtitle{
        font-size: 18px;
    }
    .bible-talk-section .cover{
        height: 480px;
        border-radius: 4px;
        background-position: center bottom 20%;
    }
    .bible-talk-section .concepts{
        gap: 24px;
    }
    .bible-talk-section .concepts .concept{
        padding: 20px;
        gap: 12px;
        border-radius: 8px;
        border: 2px solid var(--main, #F2C700);
    }
    .bible-talk-section .concepts .concept .heading{
        gap: 12px;
    }
    .bible-talk-section .concepts .concept .heading .title{
        font-size: 24px;
        padding-right: 36px;
    }
    .bible-talk-section .concepts .concept .heading .icon{
        width: 36px;
        height: 36px;
    }
    .bible-talk-section .concepts .concept .description{
        font-size: 16px;
    }
    .bible-talk-section .more{
        padding-top: 0px;
        gap: 8px;
    }
    .bible-talk-section .more .caption{
        font-size: 16px;
    }
}
@media(max-width:1024px){
    .bible-talk-section{
        margin: 120px auto 48px;
        gap: 16px;
        padding: 0 24px;
    }
    .bible-talk-section .section-title-box .title{
        font-size: 32px;
    }
    .bible-talk-section .section-title-box .subtitle{
        font-size: 16px;
    }
    .bible-talk-section .cover{
        height: 400px;
        border-radius: 4px;
        background-position: center bottom 20%;
    }
    .bible-talk-section .concepts{
        gap: 16px;
    }
    .bible-talk-section .concepts .concept{
        padding: 12px;
        gap: 8px;
        border-radius: 8px;
        border: 2px solid var(--main, #F2C700);
    }
    .bible-talk-section .concepts .concept .heading{
        gap: 12px;
    }
    .bible-talk-section .concepts .concept .heading .title{
        font-size: 20px;
        padding-right: 36px;
    }
    .bible-talk-section .concepts .concept .heading .icon{
        width: 36px;
        height: 36px;
    }
    .bible-talk-section .concepts .concept .description{
        font-size: 15px;
    }
    .bible-talk-section .more{
        padding-top: 0px;
        gap: 8px;
    }
    .bible-talk-section .more .caption{
        font-size: 16px;
    }
}
@media(max-width:768px){
    .bible-talk-section{
        margin: 120px auto 48px;
        gap: 16px;
        padding: 0 16px;
    }
    .bible-talk-section .section-title-box .title{
        font-size: 28px;
    }
    .bible-talk-section .section-title-box .subtitle{
        font-size: 16px;
    }
    .bible-talk-section .cover{
        height: 320px;
        border-radius: 4px;
        background-position: center bottom 20%;
    }
    .bible-talk-section .concepts{
        gap: 16px;
        flex-direction: column;
    }
    .bible-talk-section .concepts .concept{
        padding: 20px;
        gap: 24px;
        flex-direction: row;
    }
    .bible-talk-section .concepts .concept .heading{
        gap: 12px;
        flex-direction: column;
        min-width: 100px;
    }
    .bible-talk-section .concepts .concept .heading .title{
        font-size: 18px;
        padding-right: 0px;
    }
    .bible-talk-section .concepts .concept .heading .icon{
        width: 36px;
        height: 36px;
    }
    .bible-talk-section .concepts .concept .description{
        font-size: 15px;
        display: flex;
        align-items: center;
        text-align: start;
    }
    .bible-talk-section .more{
        padding-top: 0px;
        gap: 8px;
    }
    .bible-talk-section .more .caption{
        font-size: 16px;
    }
}
@media(max-width:414px){
    .bible-talk-section{
        margin: 96px auto 48px;
        gap: 16px;
        padding: 0 16px;
    }
    .bible-talk-section .section-title-box .title{
        font-size: 24px;
    }
    .bible-talk-section .section-title-box .subtitle{
        font-size: 16px;
    }
    .bible-talk-section .cover{
        height: 240px;
        border-radius: 4px;
        background-position: center bottom 20%;
    }
    .bible-talk-section .concepts{
        gap: 16px;
    }
    .bible-talk-section .concepts .concept{
        padding: 20px 24px;
        gap: 12px;
        flex-direction: column;
    }
    .bible-talk-section .concepts .concept .heading{
        gap: 12px;
        flex-direction: row;
        padding-right: 28px;
    }
    .bible-talk-section .concepts .concept .heading .title{
        font-size: 18px;
        padding-right: 0px;
    }
    .bible-talk-section .concepts .concept .heading .icon{
        width: 28px;
        height: 28px;
    }
    .bible-talk-section .concepts .concept .description{
        font-size: 14px;
        display: flex;
        align-items: center;
    }
    .bible-talk-section .more{
        padding-top: 0px;
        gap: 8px;
    }
    .bible-talk-section .more .caption{
        font-size: 14px;
    }
}

/*---------------  FAQ Section ----------------*/

.faq-section{
    display: flex;
    width: 1366px;
    padding: 0px 80px;
    margin: 0 auto 80px;
    flex-direction: column;
    gap: 24px;
}

.faq-section .section-title{
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.faq-section .section-title .title{
    align-self: stretch;
    color: var(--black, #000);
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.faq-section .section-title .subtitle{
    align-self: stretch;
    color: var(--black-40, rgba(0, 0, 0, 0.40));
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
}

.faq-section .faq-list{
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.faq-section .faq-list .question{
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-bottom: 1px solid #C1C7CD;
}

.faq-section .faq-list .question:hover{
    cursor: pointer;
    background: #FAE999;

    .text{
        color:#000;
    }
    .arrow{
        background-image: url(../element/icons/faq-arrow-hover.png);
    }
    .q-mark{
        opacity: 1;
    }
}

.faq-section .faq-list .question.active{
    background: #F2C700;
}

.faq-section .faq-list .question .text.active{
    color: #000;
    font-weight: 500;
}

.faq-section .faq-list .question .arrow.active{
    background-image: url(../element/icons/faq-arrow-hover.png);
}

.faq-section .faq-list .question .q-mark{
    width: 24px;
    height: 24px;
    background-image: url(../element/icons/faq-qmark.png);
    background-size: contain;
    opacity: 0.2;
}

.faq-section .faq-list .question .q-mark.active{
    opacity: 1;
}

.faq-section .faq-list .question .text{
    flex: 1 0 0;
    color: #697077;

    /* Body/M */
    font-family: "Noto Sans TC";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.faq-section .faq-list .question .arrow{
    width: 24px;
    height: 24px;
    background-image: url(../element/icons/faq-arrow.png);
    background-size: contain;
}

.faq-section .faq-list .answer{
    height: 0px;
    padding: 0px 76px;
    overflow: hidden;
    font-size: 18px;
    transition: ease 300ms;
}

.faq-section .faq-list .answer.active{
    display: flex;
    padding: 24px 76px;
    gap: 8px;
    align-self: stretch;
    border-bottom: 1px solid var(--black, #000);
    background: #FCF4CC;
    height: auto;
    overflow: visible;

    flex: 1 0 0;
    color: var(--black-80, rgba(0, 0, 0, 0.80));

    /* Body/M */
    font-family: "Noto Sans TC";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */

    transition: ease-out 300ms;
}

@media(max-width:1366px){
    .faq-section{
        padding: 0px 48px;
        gap: 24px;
        width: 100%;
        margin: 0 auto 80px;
    }
    .faq-section .section-title .title{
        font-size: 36px;
    }
    .faq-section .section-title .subtitle{
        font-size: 18px;
    }
    .faq-section .faq-list .question{
        padding: 36px 16px;
        gap: 16px;
    }
    .faq-section .faq-list .question .q-mark{
        width: 36px;
        height: 36px;
    }
    .faq-section .faq-list .question .text{
        font-size: 20px;
    }
    .faq-section .faq-list .question .arrow{
        width: 24px;
        height: 24px;
    }
    .faq-section .faq-list .answer{
        padding: 0px 68px;
        font-size: 18px;
    }
    .faq-section .faq-list .answer.active{
        padding: 24px 68px;
        gap: 8px;
        font-size: 18px;
    }
}

@media(max-width:1024px){
    .faq-section{
        padding: 0px 24px;
        gap: 24px;
        margin: 0 auto 48px;
        width: 100%;
    }
    .faq-section .section-title .title{
        font-size: 32px;
    }
    .faq-section .section-title .subtitle{
        font-size: 16px;
    }
    .faq-section .faq-list .question{
        padding: 36px 16px;
        gap: 8px;
    }
    .faq-section .faq-list .question .q-mark{
        width: 24px;
        height: 24px;
    }
    .faq-section .faq-list .question .text{
        font-size: 18px;
    }
    .faq-section .faq-list .question .arrow{
        width: 24px;
        height: 24px;
    }
    .faq-section .faq-list .answer{
        padding: 0px 48px;
        font-size: 16px;
    }
    .faq-section .faq-list .answer.active{
        padding: 24px 48px;
        gap: 8px;
        font-size: 16px;
    }
}

@media(max-width:768px){
    .faq-section{
        padding: 0px 16px;
        gap: 24px;
        width: 100%;
    }
    .faq-section .section-title .title{
        font-size: 32px;
    }
    .faq-section .section-title .subtitle{
        font-size: 16px;
    }
    .faq-section .faq-list .question{
        padding: 28px 16px;
        gap: 16px;
    }
    .faq-section .faq-list .question .q-mark{
        width: 24px;
        height: 24px;
    }
    .faq-section .faq-list .question .text{
        font-size: 18px;
    }
    .faq-section .faq-list .question .arrow{
        width: 24px;
        height: 24px;
    }
    .faq-section .faq-list .answer{
        padding: 0px 56px;
        font-size: 16px;
    }
    .faq-section .faq-list .answer.active{
        padding: 24px 56px;
        gap: 8px;
        font-size: 16px;
    }
}

@media(max-width:414px){
    .faq-section{
        padding: 0px 16px;
        gap: 12px;
        width: 100%;
    }
    .faq-section .section-title .title{
        font-size: 24px;
    }
    .faq-section .section-title .subtitle{
        font-size: 14px;
    }
    .faq-section .faq-list .question{
        padding: 24px 12px;
        gap: 8px;
    }
    .faq-section .faq-list .question .q-mark{
        width: 24px;
        height: 24px;
    }
    .faq-section .faq-list .question .text{
        font-size: 16px;
    }
    .faq-section .faq-list .question .arrow{
        width: 24px;
        height: 24px;
    }
    .faq-section .faq-list .answer{
        padding: 0px 44px;
        font-size: 14px;
    }
    .faq-section .faq-list .answer.active{
        padding: 24px 44px;
        gap: 8px;
        font-size: 14px;
    }
}