/*FAQ - START*/
.faq-page .faq-list {
    display: flex;
    flex-direction: column;
    gap: 31px;
}
.faq-page .faq-list .faq-item{
    border-bottom: 1px solid var(--color-grey);
    cursor: pointer;
    position: relative;
    padding-right: 60px;
    padding-bottom: 0;
    transition: 0.3s all;
}
.faq-page .faq-list .faq-item.active {
    padding-bottom: 40px;
}
.faq-page .faq-list .faq-item:last-child {
    border: none;
    padding-bottom: 0;
}
.faq-page .faq-list h3 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 25px;
}
.faq-page .faq-list .text {
    color: var(--color-dark-grey);
    padding: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s all;
    box-sizing: border-box;
}
.faq-page .faq-list .faq-item.active h3 {
    font-weight: 700;
}
.faq-page .faq-list .faq-item.active .text {
    max-height: 500px;
    opacity: 1;
}
.faq-page .faq-list .faq-item .faq-close-icon {
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s all;
}
.faq-page .faq-list .faq-item.active .faq-close-icon {
    transform: rotate(135deg);
}
/*FAQ - END*/

@media (max-width: 1279px) {
    /*FAQ - START*/
    .faq-page .faq-list {
        gap: 25px;
    }
    .faq-page .faq-list h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .faq-page .faq-list .faq-item.active {
        padding-bottom: 30px;
    }
    /*FAQ - END*/
}
/*max-width: 1279px END*/

@media (max-width: 1023px) {
    /*FAQ - START*/
    .faq-page .faq-list {
        gap: 20px;
    }
    .faq-page .faq-list .faq-item{
        padding-bottom: 15px;
    }
    .faq-page .faq-list h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .faq-page .faq-list .faq-item.active {
        padding-bottom: 25px;
    }
    /*FAQ - END*/
}
/*max-width: 1023px END*/

@media (max-width: 799px) {
    /*FAQ - START*/
    .faq-page .faq-list {
        gap: 15px;
    }
    .faq-page .faq-list .faq-item {
        padding-bottom: 0;
        padding-right: 40px;
    }
    /*FAQ - END*/
}
/*max-width: 799px END*/
