.faq-box {
    gap: 25px;
    display: grid;
    grid-template-columns: 50% 45%;
    justify-content: space-between;
    align-items: start;
}
.faq-box-img figure img{
    width: 100%;
    height: 500px;
    border-radius: 10px;
}
.faq-item .card{
    border: 0;
    border-radius: 0;
    margin-bottom: 6px;
    background: transparent;
}
.faq-item .card-header {
    border: 0;
    padding: 0;
    border-radius: 0;
    background: no-repeat;
}
.faq-item .card-header button {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    line-height: 20px;
    border-radius: 8px;
    text-decoration: none;
    padding: 16px 28px 16px 16px;
    color: var(--primary--color);
    background: var(--grey-color);
    white-space: normal;
    position: relative;
}
.faq-item .card-body{
    padding: 18px 16px 12px;
    font-size: 14px;
    line-height: 1.5;
}
.faq-box .card-header h5 button:after {
    top: 50%;
    right: 16px;
    font-size: 16px;
    content: "\f107";
    position: absolute;
    color: var(--accent--color);
    font-family: "Font Awesome 6 Free";
    transform: translateY(-50%);
}
.faq-box .card-header h5 button:not(.collapsed):after {
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    color: var(--secondary--color);
}
.faq-box .card-header h5 button:not(.collapsed) {
    color: var(--secondary--color);
    background: var(--accent--color);
}
/* .home2-faq-con .card-header h5 button:not(.collapsed):after {
    top: 11%;
} */
.faq-box #accordion .card:last-child{
    margin-bottom: 0;
}
@media only screen and (max-width: 1440px) {}
@media only screen and (max-width: 1199px) {
    .faq-item .card-body {
        padding: 15px 16px 10px;
        font-size: 13px;
    }
    .faq-item .card-header button {
        font-size: 16px;
        padding: 14px 26px 14px 16px;
    }
    .faq-item .card {
        margin-bottom: 5px;
    }
}
@media only screen and (max-width: 991px) {
    .faq-box {
        grid-template-columns: 100%;
    }
    .faq-item{
        order: 2;
    }
    .faq-box-img figure{
        text-align: center;
    }
    .faq-box-img figure img {
        width: 280px;
    }
    /* .home2-faq-con .card-header h5 button:not(.collapsed)::after {
        top: 8%;
    } */
}
@media only screen and (max-width: 767px) {
    .faq-item .card-header button {
        padding: 12px 24px 12px 14px;
        font-size: 15px;
    }
    .faq-item .card-body {
        padding: 12px 14px 8px;
        font-size: 12px;
    }
    .faq-box {
        gap: 20px;
    }
    .faq-box-img{
        text-align: center;
    }
    .faq-box-img figure img {
        width: 250px;
    }
}
@media only screen and (max-width: 575px) {
    .faq-box {
        gap: 15px;
    }
    .faq-box-img figure img {
        width: 180px;
    }
    .faq-item .card-header button {
        padding: 10px 22px 10px 12px;
        font-size: 14px;
        line-height: 18px;
    }
    .faq-item .card-body {
        padding: 10px 12px 8px;
        font-size: 11px;
    }
    .faq-item .card {
        margin-bottom: 4px;
    }
}