.faqs .card {
    border: none;
    border-radius: 0;
    background-color: #fff;
}
.faqs .accordion .card {
    width: 100%;
    margin: 0 auto 0.25rem;
    background: var(--magenta-color);
}
.faqs .card-header {
    background: var(--magenta-color);
    border: none;
    border-radius: 0;
    padding-block: 0;
    padding-inline: 1.25rem;
}
.faqs .card-header .btn-link {
    width: 100%;
    font-size: 40px;
    font-weight: 500;
    font-style: normal;
    line-height: 40px;
    letter-spacing: 0;
    color: var(--color);
    padding-left: 30px;
    text-align: left;
    display: flex;
    white-space: normal;
    transition: all 0.5s;
    position: relative;
}
.faqs .card-header .btn-link:before {
    width: 30px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    position: absolute;
    top:5px;
    left: 0;
}
.faqs .card-header .btn-link[aria-expanded="true"]:before {
    content: '-';

}
.faqs .card-header .btn-link[aria-expanded="false"]:before {
    content: '+';
}
.faqs .card-header .btn-link:active,
.faqs .card-header .btn-link:focus,
.faqs .card-header .btn-link:hover,
.faqs .card-header .btn-link:visited {
    text-decoration: none;
}
.faqs .card-body {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    padding-block: 0;
}
.faqs .card-body p {
    margin-bottom: 0.5rem;
}
.faqs .faq-header {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    background: var(--color);
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: #ffffff;
    padding-inline: 1.25rem;
}
@media (max-width: 749px) {
    .faqs .card-header .btn-link {
        font-size: 24px;
        line-height: 24px;
        padding-left: 20px;
    }
    .faqs .card-header .btn-link:before {
        width: 20px;
        height: 24px;
    }
}