.tab-content {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}
.tab-content.active {
    display: block;
}
.empty-error {
    background: var(--danger);
    border-radius: 20px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.faqs-answear-wrapper {
    background: var(--gray5);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    margin-bottom: 100px;
}
.faqs-answear-wrapper .swiper-pagination {
    position: absolute;
    top: calc(100% + 40px);
}
.faq-cat {
    color: var(--color1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border-radius: 20px;
    transition: 1s;
}
.faq-cat:hover,
.faq-cat.active {
    background: var(--color1);
    color: var(--white);
}
/**  **/
.faqs-answer.show {
    display: block;
    transition: 1s ease;
    transition: 1s ease;
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
}
.faqs-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    .faqs-item {
        position: relative;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        box-shadow: 0px 6px 20px -4px #0000001A;
        background: var(--white);
        padding: 16px 16px 16px 48px;
        border-radius: 20px;
        height: fit-content;
        transition: 1s ease;
        .faqs-question {
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            .faq-num {
                font-size: 24px;
                font-family: var(--SemiBold);
                width: 64px;
                flex: 0 0 64px;
                height: 64px;
                background: var(--accent);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 1s;
            }
            p {
                font-size: 16px;
                font-family: var(--Medium);
                color: var(--black);
            }
            i {
                width: 24px;
                flex: 0 0 24px;
                height: 24px;
                font-size: 22px;
                color: var(--color1);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 1s;
                position: absolute;
                left: clamp(16px, 2vw, 24px);
                &:before {
                    transition: 1s;
                    display: block;
                }
            }
        }
        .faqs-answer {
            padding-inline: 78px 32px;
            opacity: 0;
            height: 0;
            visibility: hidden;
            display: block;
            p {
                font-size: 14px;
                font-family: var(--Regular);
            }
        }
        &.active {
            transition: 1s ease;
            .faqs-question i {
                color: var(--color2);
                &:before {
                    transition: 1s;
                    content: "\e921";
                }
            }
            .faq-num {
                background: var(--color1);
                color: white;
            }
        }
    }
}
@media only screen and (max-width: 768px) {
    .faqs-answer {
        padding-inline: 0 !important;
    }
}
@media only screen and (min-width: 992px) {
    .faqs-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
/** Design 1 **/
.faq-design-1 .faqs-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
}
.faq-design-1 .faqs-item:nth-last-child(1) {
    margin-bottom: 0;
}
.faq-design-1 .faqs-question {
    display: flex;
    gap: 0.75rem;
    position: relative;
    font-family: var(--title);
    cursor: pointer;
}
.faq-design-1 .faqs-question p {
    padding-left: 2rem;
    transition: 1s;
}
.faq-design-1 .faqs-question i {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
    transition: 1s;
    color: var(--color1);
}
.faq-design-1 .faqs-question .faq-num {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
    background: var(--color1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding-bottom: 2px;
    margin-top: 2px;
    transition: 1s;
}
.faq-design-1 .faqs-answer {
    transition: all 0.4s ease;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.faq-design-1 .faqs-item.active .faq-num,
.faq-design-1 .faqs-item:hover .faq-num {
    background: var(--color2);
}
.faq-design-1 .faqs-item.active .faqs-question p,
.faq-design-1 .faqs-item:hover .faqs-question p {
    color: var(--color2);
}
/** Design 2 **/
.faq-design-2 .faqs-item {
    background: var(--gray5);
    border-radius: 3rem;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    transition: 1s;
}
.faq-design-2 .faqs-item.active {
    border-radius: 2rem;
}
.faq-design-2 .faqs-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    font-family: var(--title);
    cursor: pointer;
}
.faq-design-2 .faq-num {
    background: var(--white);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}
.faq-design-2 .faqs-question i {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    transition: 1s;
    color: var(--color1);
}
.faq-design-2 .faqs-question p {
    padding-left: 2rem;
    transition: 1s;
}
.faq-design-2 .faqs-answer {
    padding: 1rem 2rem 1.5rem 0;
}
@media only screen and (max-width: 768px) {
    .faq-design-2 .faqs-item {
        padding: 14px 20px;
    }
    .faq-design-2 .faqs-answer {
        padding: 10px 0;
    }
}
/** Design 3 **/
.faq-design-3 .faqs-item {
    background: var(--gray5);
    padding: 24px 32px;
    position: relative;
    border-radius: 1.5rem;
}
.faq-design-3 .faqs-question {
    cursor: pointer;
}
.faq-design-3 .faqs-answer {
    padding: 12px 0 24px;
}
.faq-design-3 .faq-num {
    position: absolute;
    top: 0px;
    line-height: 1;
    left: 92px;
}
.faq-design-3 .faq-num:before {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="94" height="28" viewBox="0 0 94 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.3412 21.2688C12.8713 25.126 16.1673 28 20.0608 28H73.9392C77.8327 28 81.1287 25.126 81.6588 21.2688L83.2996 9.33031C84.0345 3.98366 88.6031 -1.90735e-06 94 -1.90735e-06H47H0C5.39692 -1.90735e-06 9.96555 3.98367 10.7004 9.33032L12.3412 21.2688Z" fill="white"/></svg>');
    width: 94px;
    height: 28px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: 0;
}
.faq-design-3 .faqs-item .faqs-question i {
    position: absolute;
    left: 92px;
    bottom: 0px;
}
.faq-design-3 .faqs-item .faqs-question i:before {
    position: relative;
    z-index: 1;
}
.faq-design-3 .faqs-item .faqs-question i:after {
    content: "";
    width: 94px;
    height: 28px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: 0;
    background-image: url('data:image/svg+xml,<svg width="94" height="28" viewBox="0 0 94 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.3412 6.73122C12.8713 2.87395 16.1673 0 20.0608 0H73.9392C77.8327 0 81.1287 2.87396 81.6588 6.73123L83.2996 18.6697C84.0345 24.0163 88.6031 28 94 28H47H0C5.39692 28 9.96555 24.0163 10.7004 18.6697L12.3412 6.73122Z" fill="white"/></svg>');
}
.faqs-item.active .faqs-question i:after {
    transform: translateX(50%) rotate(180deg);
    top: 0;
}
/** Design 4 **/
.faq-design-4 .faqs-item {
    background: var(--gray5);
    border-radius: 20px;
    padding: 20px 32px;
}
.faq-design-4 .faqs-question {
    display: flex;
    gap: 10px;
    position: relative;
    font-family: var(--title);
    cursor: pointer;
}
.faq-design-4 .faq-num {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: 6px;
}
.faq-design-4 .faqs-answer {
    padding: 10px 0 8px;
}
.faq-design-4 .faqs-question i {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    transition: 1s;
    color: var(--color1);
    top: 50%;
    transform: translateY(-50%);
}
.faq-design-4 .faqs-question p {
    padding-left: 2rem;
    transition: 1s;
}
.faq-design-4 .faqs-item:before {
    content: "";
    position: absolute;
    top: 15px;
    right: 0;
    width: 9px;
    height: 41px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-image: url('data:image/svg+xml,<svg width="9" height="41" viewBox="0 0 9 41" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 35.2585L9 6.39648H3.72414C1.66735 6.39648 0 8.06383 0 10.1206L0 31.5344C0 33.5912 1.66735 35.2585 3.72414 35.2585H9Z" fill="%23950A0E"/><path d="M3.25848 35.2585C6.3628 35.4138 8.84465 37.8956 8.99986 40.9999V35.2585H3.25848Z" fill="%23950A0E"/><path d="M3.25848 6.39648C6.3628 6.24127 8.84465 3.75942 8.99986 0.655105V6.39648H3.25848Z" fill="%23950A0E"/></svg>');
}
.faq-design-4 .faqs-item.active .faqs-question i {
    transform: rotateX(180deg) translateY(50%);
}