.faq .inner .text{
    font-size:1.25rem;
    line-height:1.5;
}

.faq-map{
    display:flex;
}
.faq-map a{
    position: relative;
    display:block;
    background-color:#102456;
    color:#fff;
    height:5.25rem;
    flex:1;
    align-content: center;
    text-align: center;
    border-radius: 5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    font-size:1.25rem;
}
.faq-map a::after{
    content: "";
    position: absolute;
    height: .75rem;
    width: .75rem;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(135deg) translateY(-50%);
    right: 2rem;
}
.faq-map a:not(:last-child){
    margin-right:3rem;
}

.faq-boxs{
    margin-bottom:6rem;
}

.faq-box {
    border-radius:1.25em;
    padding:0.75em;
    background: linear-gradient(150deg, #F3F3F3 0%, #FFFFFF 30%, #E8E8E8 50%, #d1d1d1 80%, #FFFFFF 90%, #FAFAFA 100%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.faq-box:not(:last-child){
    margin-bottom:2rem;
}

.faq-question {
    font-size: 1.75rem;
    font-weight: bold;
    position: relative;
    padding:0.75rem 2rem;
}

.faq-question::after {
    content: "▼";
    position: absolute;
    right: 10px;
    transition: transform 0.4s ease;
    color:#002C6C;
    transform: scaleX(1.15) rotate(0deg);
}

.faq-box.active .faq-question::after {
    transform: scaleX(1.15) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size:1.5rem;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding:0 2rem;
    border-radius:0.5em;
    background-color:#fff;
    line-height:1.5;
}

.faq-box.active .faq-answer {
    max-height: 1000px;
    padding-top: .75rem;
    padding-bottom: .75rem;
}
@media screen and (max-width: 768px) {
    .faq-box {
        border-radius:.5em;
        padding:.5em;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    }
    .faq-box:not(:last-child) {
        margin-bottom: 1rem;
    }
    .faq-question {
        font-size: 0.82rem;
        padding: .5rem 2rem .5rem 0.5rem;
    }

    .faq-question::after {
        bottom: 40%;;
    }

    .faq-answer {
        font-size:1rem;
        padding:0 1rem;
        border-radius:0.25em;
    }
}
