.faq-blog {
    margin-bottom: 40px;
    background: var(--grey_darker);
    padding: 30px 30px 0;
}

.faq-blog .faq-blog-header {
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: var(--font_weight--semibold);
}

.faq-blog .faq-item {
    border-bottom: 1px solid #d9e8ff;

}
.faq-blog .faq-item:last-child {
    border-bottom: unset;
}

.faq-blog .faq-question {
    padding-top: 30px;
    padding-bottom: 30px;
    position:relative;
    cursor: pointer;
}

.faq-blog .faq-question h2 {
    font-size: var(--h5-blog);
    margin: 0;
    padding-right: 40px;
}

@media only screen and (max-width: 1440px) {
    .faq-blog .faq-question h2 {
        font-size: var(--h5-blog--large);
    }
}

@media only screen and (max-width: 1280px) {
    .faq-blog .faq-question h2 {
        font-size: var(--h5-blog--desktop);
    }
}

@media only screen and (max-width: 1024px) {
    .faq-blog .faq-question h2 {
        font-size: var(--h5-blog--tablet);
    }
}

@media only screen and (max-width: 768px) {
    .faq-blog .faq-question h2 {
        font-size: var(--h5-blog--mobile_landscape);
    }
}

@media only screen and (max-width: 460px) {
    .faq-blog .faq-question h2 {
        font-size: var(--h5-blog--mobile);
    }
}

.faq-blog .faq-item .faq-question h2:after,
.faq-blog .faq-item .faq-question h2:before {
    position: absolute;
    top: 40px;
    right: 0;

    display: block;

    width: 25px;
    height: 2px;

    content: "";

    background-color: var(--brand);
}

@media only screen and (max-width: 1024px) {
    .faq-blog .faq-item .faq-question h2:after,
    .faq-blog .faq-item .faq-question h2:before {
        top: 30px;

        width: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .faq-blog .faq-item .faq-question h2:after,
    .faq-blog .faq-item .faq-question h2:before {
        top: 35px;
    }
}

.faq-blog .faq-item .faq-question h2:before {
    transition: transform 300ms;
    transform: rotate(90deg);
}

.faq-blog .faq-item .faq-answer ul {
    margin-bottom: 20px;

    list-style-type: none;
}

.faq-blog .faq-item .faq-answer ul li {
    font-size: var(--p);
    position: relative;

    margin-bottom: 10px;
    padding-left: 20px;

    line-height: var(--line_hight--large);
}


@media only screen and (max-width: 1440px) {
    .faq-blog .faq-item .faq-answer ul li {
        font-size: var(--p--large);
    }
}

@media only screen and (max-width: 1280px) {
    .faq-blog .faq-item .faq-answer ul li {
        font-size: var(--p--desktop);
    }
}

@media only screen and (max-width: 1024px) {
    .faq-blog .faq-item .faq-answer ul li {
        font-size: var(--p--tablet);
    }
}

@media only screen and (max-width: 768px) {
    .faq-blog .faq-item .faq-answer ul li {
        font-size: var(--p--mobile_landscape);
    }
}

@media only screen and (max-width: 460px) {
    .faq-blog .faq-item .faq-answer ul li {
        font-size: var(--p--mobile);
    }
}

@media only screen and (max-width: 1024px) {
    .faq-blog .faq-item .faq-answer ul li {
        padding-left: 15px;
    }
}

.faq-blog .faq-item .faq-answer ul li:before {
    position: absolute;
    top: 11px;
    left: 0;

    display: block;

    width: 7px;
    height: 7px;

    content: "";

    border-radius: 50%;
    background: var(--orange);
}


@media only screen and (max-width: 1024px) {
    .faq-blog .faq-item .faq-answer ul li:before {
        top: 8px;
    }
}

@media only screen and (max-width: 460px) {
    .faq-blog .faq-item .faq-answer ul li:before {
        top: 6px;
    }
}

.faq-blog .faq-item .faq-answer ul li:last-child {
    margin-bottom: 0;
}

.faq-blog .faq-item .faq-answer p {
    margin-bottom: 20px;

    line-height: var(--line_hight--large);
}

.faq-blog .faq-item .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-blog .faq-item.faq-open .faq-question h4:before {
    transform: rotate(0deg);
}

.faq-blog .faq-item .faq-answer {
    display: none;

    padding-bottom: 30px;
}

.faq-blog .faq-item.faq-open .faq-answer {
    display: block;
}
