
.faq-con:after {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background: rgb(41 19 75 / 85%);
}
.faq-con {
    position: relative;
    background: url(../images/faq-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.faq-con .container {
    z-index: 1;
    position: relative;
}
.faq-con .generic-title2 span {
    color: var(--accent-color);
}
.faq-con .generic-title2 h2 {
    color: var(--white-color);
}
.faq-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 48.7% 48.7%;
}
.faq-box-item .card-header {
    padding: 0;
    border: none;
    border-radius: 10px !important;
}
.faq-box-item .card {
    margin-bottom: 30px;
    border-radius: 10px;
    background: transparent;
    border: 0;
}
.faq-box-item .card:last-child{
    margin-bottom: 0;
}
.faq-box-item .card-header h5 button {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    color: var(--primary--color);
    font-family: "Plus Jakarta Sans", sans-serif;
    width: 100%;
    text-align: left;
    position: relative;
    border-radius: 10px;
    padding: 25px 28px 26px;
    text-decoration: none;
    background: var(--white-color);
}
.faq-box-item .card-body {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 28px;
    background: #1a8fe3;
    color: var(--white-color);
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #2562ff;
}
.faq-box-item .card-header h5 button:not(.collapsed){
    background: #1a8fe3;
    color: var(--white-color);
    border-radius: 10px 10px 0 0;
}

.faq-box-item .card-header h5 button:after {
    content: "\f105";
    font-family: "Font Awesome 5 free";
    font-size: 16px;
    top: 50%;
    right: 30px;
    width: 46px;
    height: 46px;
    display: flex;
    position: absolute;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
    background: #1a8fe3;
}
.faq-box-item .card-header h5 button:not(.collapsed):after {
    color: #fff;
    content: "\f107";
    background: var(--accent-color);
}
.faq-con{
    margin-top: -130px;
    padding-top: 260px;
}
/* RESPONSIVE */
@media only screen and (max-width: 1440px) {
    .faq-con {
        padding-top: 231px;
    }
}
@media only screen and (max-width: 1199px) {
    .faq-box-item .card-header h5 button {
        font-size: 18px;
        line-height: 20px;
        padding: 22px 22px 23px;
    }
    .faq-box-item .card-body {
        padding: 18px 22px;
    }
    .faq-box {
        gap: 24px;
    }
    .faq-box-item .card {
        margin-bottom: 20px;
    }
    .faq-con {
        padding-top: 212px;
    }

}
@media only screen and (max-width: 991px) {
    .faq-box {
        gap: 20px;
        grid-template-columns: 100%;
    }
    .faq-box-item .card-header h5 button:after {
        right: 21px;
    }
    .faq-con {
        padding-top: 192px;
    }
}
@media only screen and (max-width: 767px) {
    .faq-box-item .card-header h5 button:after {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .faq-box-item .card-header h5 button {
        font-size: 16px;
        line-height: 18px;
        padding: 18px 22px 20px;
    }
    .faq-box-item .card-body {
        padding: 15px 22px;
        font-size: 14px;
        line-height: 22px;
    }
    .faq-con {
        padding-top: 184px;
    }
}
@media only screen and (max-width: 575px) {
    .faq-box-item .card-header h5 button {
        padding: 15px 72px 17px 16px;
        white-space: normal;
    }
    .faq-box-item .card-body {
        padding: 11px 16px;
        font-size: 14px;
        line-height: 22px;
    }
    .faq-con {
        padding-top: 175px;
    }
}