.faq-grid {
    margin: auto;
    display: grid;
    gap: 24px;
}

.faq-question {
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    padding: 20px 30px;
    align-items: center;
    min-height: 85px;
}

.faq-item {
    border-radius: 10px;
}
.faq-wrap.light_faq .faq-item
 {
    border: 1px solid #414141;
    background: #000000;
    
}
#top #wrap_all .main_color .faq-wrap.light_faq h3 {
    font-size: 16px !important;
    color: #EDEDED;
    font-weight: 300 !important;
    line-height: 23px;
    margin: 0;
   padding-right: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #FE6D1F;
}

.faq-icon::before {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    display: none;
}

.faq-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    padding-left: 30px;
    padding-right: 35px;
    position: relative;
    top: -10px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: #bfbfbf;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-bottom: 15px;
}
#top #wrap_all .main_color .faq-question h3 {
    color: #020100;
    font-size: 16px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 23px !important;
    margin-bottom: 0px !important;
}
.faq-wrap.black_faq .faq-item {
    border-radius: 10px;
    border: 1px solid #CACACA;
}
.faq-wrap.black_faq span.faq-icon {
    border-radius: 70px;
    border: 1px solid #CACACA;
}
.faq-wrap.black_faq .faq-icon::before,
.faq-wrap.black_faq .faq-icon::after {
    background: #000000;
}

.faq-wrap.black_faq .faq-grid {
    gap: 15px;
}
#top .main_color .faq-wrap.black_faq p {
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    margin-bottom: 15px;
    color: #000;
}
button.show-more-btn {
    border-radius: 70px;
    border: 1px solid #CACACA;
    background: transparent;
    color: #000;
    height: 38px;
    min-width: 128px;
    cursor: pointer;
}
.show-more-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}
.faq-wrap .faq-item:nth-child(n+4) {
    display: none;
}
.faq-wrap.show-all .faq-item {
  display: block;
}
.faq-answer a.wpil_keyword_link {
    color: #000;
    text-decoration: underline !important;
}