/**
 * ==========================================
 * Dedicated Server FAQ
 * ==========================================
 */

.tr-dedicated-faq{

    padding:110px 0;

    background:linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );

}


/* ==========================================
   FAQ List
========================================== */

.tr-dedicated-faq .tr-faq-list{

    max-width:900px;

    margin:60px auto 0;

}


/* ==========================================
   FAQ Item
========================================== */

.tr-dedicated-faq .tr-faq-item{

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:16px;

    margin-bottom:18px;

    overflow:hidden;

    transition:all .3s ease;

}


/* ==========================================
   FAQ Item Hover
========================================== */

.tr-dedicated-faq .tr-faq-item:hover{

    border-color:#0A2E73;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

}


/* ==========================================
   FAQ Question
========================================== */

.tr-dedicated-faq .tr-faq-question{

    width:100%;

    padding:22px 28px;

    border:none;

    background:#ffffff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    text-align:left;

    font-size:18px;

    font-weight:600;

    color:#0f172a;

}


/* ==========================================
   FAQ Icon
========================================== */

.tr-dedicated-faq .tr-faq-icon{

    font-size:28px;

    color:#0A2E73;

    transition:transform .3s ease;

}


/* ==========================================
   FAQ Answer
========================================== */

.tr-dedicated-faq .tr-faq-answer{

    display:none;

    padding:0 28px 24px;

}


/* ==========================================
   FAQ Answer Text
========================================== */

.tr-dedicated-faq .tr-faq-answer p{

    margin:0;

    color:#64748b;

    line-height:1.8;

}


/* ==========================================
   Active FAQ
========================================== */

.tr-dedicated-faq .tr-faq-item.active .tr-faq-answer{

    display:block;

}


/* ==========================================
   Active FAQ Icon
========================================== */

.tr-dedicated-faq .tr-faq-item.active .tr-faq-icon{

    transform:rotate(45deg);

}


/* ==========================================
   Mobile
========================================== */

@media(max-width:576px){

    .tr-dedicated-faq{

        padding:70px 0;

    }

    .tr-dedicated-faq .tr-faq-list{

        margin:35px auto 0;

    }

    .tr-dedicated-faq .tr-faq-question{

        padding:18px 20px;

        font-size:16px;

    }

    .tr-dedicated-faq .tr-faq-answer{

        padding:0 20px 20px;

    }

}