/*==========================================
FAQ
==========================================*/

.faqPage{
    padding:100px 0;
    background:#f7f7f7;
}

/*==========================
Heading
==========================*/

.faqPage-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.faqPage-heading span{
    display:inline-block;
    color:var(--orange);
    font-size:13px;
    font-weight:900;
    letter-spacing:.22em;
    margin-bottom:12px;
}

.faqPage-heading h2{
    font-size:42px;
    color:#222;
    margin:0 0 18px;
    line-height:1.3;
}

.faqPage-heading p{
    color:#666;
    line-height:2;
}

/*==========================
List
==========================*/

.faqPage-list{
    margin-bottom:70px;
}

.faqPage-item{
    background:#fff;
    border:1px solid #e6e6e6;
    margin-bottom:18px;
    transition:.3s;
    border-radius: 30px;
    overflow: hidden;
}

.faqPage-item.active{
    border-color:var(--yellow);
}

.faqPage-question{
    width:100%;
    border:0;
    background:none;
    padding:28px 35px;
    display:flex;
    align-items:center;
    cursor:pointer;
    text-align:left;
}

.faqPage-question span{
    width:60px;
    flex-shrink:0;
    color:var(--orange);
    font-size:14px;
    font-weight:900;
    letter-spacing:.15em;
}

.faqPage-question h3{
    flex:1;
    font-size:23px;
    color:#222;
    line-height:1.5;
    margin:0;
    transition:.3s;
}

.faqPage-item:hover h3{
    color:var(--orange);
}

.faqPage-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.faqPage-item.active .faqPage-icon{
    background:var(--yellow);
    border-color:var(--yellow);
    transform:rotate(45deg);
}

/*==========================
Answer
==========================*/

.faqPage-answer{
    display:none;
    padding:0 35px 30px 95px;
}

.faqPage-item.active .faqPage-answer{
    display:block;
}

.faqPage-answer p{
    margin:0;
    color:#666;
    line-height:2;
}

/*==========================
Bottom
==========================*/

.faqPage-contact{
    background:#fff;
    border:1px solid #e6e6e6;
    text-align:center;
    padding:55px 40px;
    border-radius: 30px;
}

.faqPage-contact h3{
    font-size:34px;
    color:#222;
    margin-bottom:18px;
}

.faqPage-contact p{
    color:#666;
    line-height:2;
    margin-bottom:30px;
}

.faqPage-btn{
    display:flex;
    justify-content:center;
    gap:20px;
}

.faqPage-btn a{
    min-width:180px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    transition:.3s;
    border-radius: 20px;
}

.faqPage-btn a:first-child{
    background:var(--yellow);
    color:#111;
}

.faqPage-btn a:last-child{
    background:#222;
    color:#fff;
}

.faqPage-btn a:hover{
    transform:translateY(-4px);
}

/*==========================================
1024
==========================================*/

@media(max-width:1024px){

.faqPage-question{
    padding:25px 28px;
}

.faqPage-answer{
    padding:0 28px 28px 88px;
}

.faqPage-question h3{
    font-size:21px;
}

}

/*==========================================
768
==========================================*/

@media(max-width:768px){

.faqPage{
    padding:70px 0;
}

.faqPage-heading{
    margin-bottom:40px;
}

.faqPage-heading h2{
    font-size:32px;
}

.faqPage-question{
    padding:22px;
    align-items:flex-start;
}

.faqPage-question span{
    width:48px;
}

.faqPage-question h3{
    font-size:20px;
}

.faqPage-icon{
    width:34px;
    height:34px;
    font-size:18px;
}

.faqPage-answer{
    padding:0 22px 22px 70px;
}

.faqPage-contact{
    padding:40px 24px;
}

.faqPage-contact h3{
    font-size:28px;
}

.faqPage-btn{
    flex-direction:column;
}

.faqPage-btn a{
    width:100%;
}

}

/*==========================================
480
==========================================*/

@media(max-width:480px){

.faqPage-heading h2{
    font-size:28px;
}

.faqPage-heading p{
    font-size:14px;
}

.faqPage-question{
    padding:18px;
}

.faqPage-question span{
    width:42px;
    font-size:12px;
}

.faqPage-question h3{
    font-size:18px;
}

.faqPage-answer{
    padding:0 18px 18px 60px;
}

.faqPage-answer p{
    font-size:14px;
}

.faqPage-contact h3{
    font-size:24px;
}

.faqPage-contact p{
    font-size:14px;
}

}