.header_box {
    position: static !important;
}

.faq_box{
    width: 100%;
    padding-top: calc(16px + 4rem);
    padding-bottom: calc(3px + 15rem);
}
.faq{
    max-width: 1380px;
    width: 85%;
    margin: auto;
}
.faq_list{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(1px + 2rem);
    border-top: 1px #D8D8D8 solid;
    padding-top: calc(1px + 2rem);
}
.faq_item{
    border-bottom: 1px #D8D8D8 solid;
  padding-bottom: calc(10px + 2rem);
}

.faq_question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq_item .p1{
font-family: BOOKOS;
font-weight: 300;
font-size: calc(10px + 0.5rem);
color: #333333;
line-height: calc(3px + 1rem);

}
.faq_item .p2{
font-family: BOOKOS;
font-weight: 300;
font-size: calc(6px + 0.5rem);
color: #999999;
line-height: calc(4px + 1.5rem);
padding-top: calc(10px + 1rem);

}

.faq_answer{
    max-height: 0;
    transition: .5s;
overflow: hidden;
}

.faq_icon img{
    width: calc(4px + 1rem);
    display: none;
    cursor: pointer;
}
.faq_icon img:nth-of-type(1){
    display: block;
}

@media (max-width: 1100px){
    .faq_item .p1{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .faq_icon img {
        width: calc(18px + 1rem);
      
    }
    .faq_item .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}