@media (min-width: 768px) {
    .section-questions {
        margin-bottom: 0;
    }
}

.expert-review-faq--custom-style-1 .expert-review-faq-item {
    position: relative;
    margin-bottom: 10px;
    background: var(--light-color);
}

.expert-review-faq--custom-style-1 .expert-review-faq-item:after, .expert-review-faq--custom-style-1 .expert-review-faq-item:before {
    background: var(--red-color);
    z-index: 1;
}

.expert-review-faq--custom-style-1 .expert-review-faq-item:before {
    top: 28px;
    right: 22px;
}

.expert-review-faq--custom-style-1 .expert-review-faq-item:after {
    top: 35px;
    right: 15px;
}

.expert-review-faq--custom-style-1 .expert-review-faq-item__question {
    font-weight: 700;
    position: relative;
    padding: 20px 40px;
    border-radius: 10px;
    line-height: 1.5;
    cursor: pointer;
    border: 2px solid var(--blue-color);
    transition: all .2s;
}

.expert-review-faq--custom-style-1 .expert-review-faq-item__question:before {
    content: "";
    position: absolute;
    top: 31px;
    left: 15px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--red-color);
}

.expert-review-faq--custom-style-1 .expert-review-faq-item.expand .expert-review-faq-item__question {
    border-bottom: transparent;
    border-radius: 10px 10px 0 0;
    background-color: var(--blue-color);
}

.expert-review-faq--custom-style-1 .expert-review-faq-item__answer {
    padding: 25px 25px;
    font-size: 1rem;
    border: 2px solid var(--blue-color);
    border-radius: 0 0 10px 10px;
}