#faq {
    background-color: #f9f9f9;
}

#faq .faq_div {
    padding: 70px 0;
}

.faq_top {
    margin-bottom: 30px;
}

.faq_tab_menu {
    margin-bottom: 40px;
    padding: 6px 0;
    box-sizing: border-box;
}

.faq_tab_menu ul {
    display: flex;
    grid-gap: 24px;
    width: calc(100% - 30px);
    margin: 0 auto;
}

.faq_tab_menu li {
    box-sizing: border-box;
    cursor: pointer;
    width: 100%;
    color: #6EBBFFB2;
    border-bottom: 3px solid #6EBBFFB2;
    padding: 31.5px 0;
}

.faq_tab_menu li.active {
    color: #0063A7; 
    font-weight: bold;
    border-bottom: 3px solid #0063A7;
}

.faq_tab_menu h2 {
    font-size: 28px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 800;
    line-height: 32px;
}

.faq_bottom {
    margin-top: 0; 
}

.faq_b_div {
    background: transparent; 
}

.faq_b_q {
    cursor: pointer;
    padding: 10px 0; 
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: #333; 
    grid-gap: 16px;
    color: #0063A7; 
    line-height: 40px;
}
.faq_b_q:hover {
    color: #0063A7; 
    background-color: transparent; 
}

.faq_b_div.active .faq_b_q {
    color: #0063A7; 
}

.faq_b_a {
    display: none;
    line-height: 44px;
    font-size: 24px;
    color: #76777A;
    background: transparent;
    font-weight: 400;
    padding-left: 40px;
    padding-bottom: 6px;
}
.faq_b_a p {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 400;
}

/* .faq_b_a br:nth-child(even) {
    display: none;
} */

.faq_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; 
    height: 24px;

    background-color: transparent; 
    color: #0063A7;
    padding: 0;
}

.faq_arrow img {
    transition: transform 0.3s;
    max-width: 100%;
}

.faq_b_div.active .faq_arrow img {
    transform: rotate(180deg); 
}

#faq_more_btn {
    margin-top:20px;
    display:none;
    cursor:pointer;
}

.more-btn {
    background:#fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 52.5px;
    color: #0063A7;
    border-radius: 30px;
    border: 2px solid #0063A7;
    text-align:center;
    box-sizing: border-box;
    padding: 1px 56.5px;
    display: flex;
    align-items: center;
    grid-gap: 18px;
}

.icon-plus {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
  }
  
  .icon-plus::before,
  .icon-plus::after {
    content: '';
    position: absolute;
    background: #0063A7;
  }
  
  .icon-plus::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .icon-plus::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  