/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 60px 0 60px;
    z-index: 1;
}

.faq-page__left {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.faq-page__right {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.faq-page .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    background-color: rgba(var(--fistudy-bdr-color-rgb), .30);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 19px 30px 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-right: 25px;
    text-align: left;
}

.faq-page .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: var(--fistudy-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page .faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--fistudy-white) !important;
}

.faq-page .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-page .faq-one-accrodion .accrodion-title h4::before {
    content: "\e928";
    font-family: 'icomoon' !important;
    font-weight: 700;
    font-size: 13px;
    color: var(--fistudy-base);
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 13px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
}

.faq-page .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\e926";
    color: var(--fistudy-white);
}

.faq-page .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 32px;
    padding-left: 30px;
    padding-right: 50px;
    margin-top: -6px;
}

.faq-page .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

.faq-page .faq-one-accrodion .accrodion-title::before {
    display: none;
}



/*==============================================
# FAQ Tabs Modern Style
==============================================*/

.faq-tabs {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 50px;
}

/* Button Style */
.faq-tab-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--fistudy-bdr-color-rgb), 0.6);
    background: #ffffff;
    color: var(--fistudy-black);
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

/* Smooth Background Animation */
.faq-tab-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    background: var(--fistudy-base);
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

/* Hover Effect */
.faq-tab-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.faq-tab-btn:hover::before {
    width: 100%;
}

/* Active Button */
.faq-tab-btn.active {
    background: var(--fistudy-base);
    color: #fff;
    border-color: var(--fistudy-base);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Active Hover */
.faq-tab-btn.active:hover {
    transform: translateY(-4px);
}

/* FAQ Content Animation */
.faq-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.faq-tab-content.active {
    display: block;
}

/* Smooth Fade Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 767px) {

    .faq-tabs {
        gap: 12px;
    }

    .faq-tab-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/