@import url('../index.css');
.faq .faq-breadcrumb {
    padding: 24px 0px;
}
.faq .faq-breadcrumb a {
    text-decoration: none;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
.faq .faq-content .content-header {
    margin-bottom: 24px;
    text-align: center;
    align-content: center;
}
.faq .faq-content {
    margin-bottom: 88px;
}
.faq .faq-content .content-header h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
.faq .faq-content .content-header h1 {
    font-size: 56px;
    line-height: 72px;
    font-weight: 700;
    padding-bottom: 12px;
}
.faq .faq-content .content-header p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 8px;
}
.faq .faq-content .content-header button {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    background-color: rgba(255, 250, 213, 1);
    border: none;
    border-radius: 8px;
    color: var(--primary);
    text-align: center;
    align-items: center;
    margin: 0px auto;
}
.faq .faq-content .content-header button img {
    width: 24px;
    height: 24px;
}
.faq .faq-content .content-header button span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;

}
.faq .faq-content .faq-items .faq-item {
    padding: 16px 24px;
    border-radius: 12px;
    background-color: var(--white);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    word-break: break-word;
}
.faq .faq-content .faq-items .faq-item .item-title{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.faq .faq-content .faq-items .faq-item .item-title h4{
    font-weight: 700;
}
.faq-item .accordion-content{
    display: none;
    margin-top: 20px;
    font-size: 16px;
}
.faq .faq-content .faq-items .end-item{
    margin-bottom: unset;
}
.faq-item.active .minus-image {
    display: block;
}
.faq-item.active .accordion-content {
    display: block;
}
.faq-item.active .add-image {
    display: none;
}
.faq-item .minus-image {
    display: none;
}
.faq .faq-breadcrumb .breadcrumb-tablet {
    display: none;
}
.faq .accordion-toggle-content-button {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .faq .faq-breadcrumb .breadcrumb-desktop {
        display: none;
    }
    .faq .faq-breadcrumb .breadcrumb-tablet {
        display: flex;
        align-items: center;
    }
    .faq .faq-breadcrumb a{
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
    }
    .faq .faq-breadcrumb span{
        font-size: 14px;
        line-height: 20px;
        color: var(--white);
        font-weight: 700;
    }
    .faq .faq-breadcrumb .icon{
        height: 20px;
        width: 20px;
    }
    .faq .faq-breadcrumb {
        padding: 16px 0px;
    }
    .faq .faq-content .content-header h3 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }
    .faq .faq-content .content-header h1 {
        font-size: 24px;
        line-height: 32px;
    }
    .faq .faq-content .content-header p {
        font-size: 14px;
        line-height: 20px;
    }
    .faq .faq-content .content-header {
        margin-bottom: 12px;
    }
    .faq .faq-content .faq-items .faq-item {
        padding: 16px;
        margin-bottom: 0px;
    }
    .faq .faq-content {
        margin-bottom: 56px;
    }
}
@media screen and (max-width: 540px) {
    .faq .faq-content {
        margin-bottom: 82px;
    }
}


