#wrap .content  {
    padding: 1.5rem 1.5rem 2rem;
}
#wrap .section  {
    text-align: center;
}
#wrap .section .p1 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffa037;
    margin-bottom: 2.5rem;
}
#wrap .section .p2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 4rem;
    font-weight: 800;
}
#wrap .content .qna  {
    margin: 1.5rem 0;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px 0px;
}

#wrap .content .qna .q {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    padding-right: 3rem;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px 0px,
    rgba(0, 0, 0, 0.08) -2px 0px 4px 0px,
    rgba(0, 0, 0, 0.08) 2px 0px 4px 0px; */
    border-radius: 1rem;
}

#wrap .content .qna.on .q {
    box-shadow: none;
}

#wrap .content .qna .q::after {
    content: '';
    background-image: url('../img/down-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    right: 1rem;
    top: 55%;
    transform: translateY(-50%);
}

#wrap .content .qna.on .q::after {
    background-image: url('../img/up-arrow.png');
}

#wrap .content .qna .a {
    font-size: 1.6rem;
    padding:0 1.5rem 2rem 1.5rem;
    border-top: none;
    line-height: 1.5;
    color: #a9a9a9;
    display: none;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
     box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px 0px,
                rgba(0, 0, 0, 0.08) -2px 0px 4px 0px,
                rgba(0, 0, 0, 0.08) 2px 0px 4px 0px;
}

#wrap .content .qna.on .a {
    display: block;
    box-shadow: none;
}



