.faq-question {
    cursor: pointer;
    font-weight: bold;
    padding: 10px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	background: #eff0f2;
    font-style: normal;
    font-weight: 400;
}

.faq-question.active {
    background: #eff0f2;
    color: #0f2742;
}

.faq-container {
    background: #fbfbfb;
    border-radius: 0 4px 4px 0;
    box-shadow: -16px 24px 24px #00000005;
    padding: 40px 24px;
}

.faq-answer {
    display: none;
    padding: 10px;
}

.faq-icon {
    margin-left: 10px;
    font-weight: bold;
}

.faq-answer ul {
	display: grid;
    gap: 0px;
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.faq-answer ul li {
    color: #0f2742;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    padding-left: 24px;
    position: relative;
    z-index: 0;
}
.faq-answer ul li:before {
    background-color: currentColor;
    border-radius: 50%;
    content: "";
    display: block;
    height: 3px;
    left: 10px;
    position: absolute;
    top: 8px;
    width: 3px;
}