
.faq_list{
    grid-row-gap: 16px;
    flex-direction: column;
    margin-top: 24px;
    display: flex;
    padding: 0;
}
.faq_item{
    list-style-type: none;
    z-index: 2;
    background-color: rgba(128, 138, 157, .08);
    border-radius: 24px;
    margin-bottom: 0;
    padding: 0 24px;
    display: block;
}
.faq_list a{
    color: #4169e1;
}
.faq_item:hover{
    background-color:#e8efff;
}
.faq_head{
    cursor:pointer;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 24px 0;
    display: flex;
}
.faq_item .faq_head h3
{
    color: var(--e-global-color-text);
    align-self: flex-start;
    font-family: Proxima Nova Lt, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin:0
}
.plus {
    flex-shrink:0;
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.open .plus:before {
    transform: translatey(-50%) rotate(-90deg);
    opacity: 0;
}

.open .plus:after {
    transform: translatey(-50%) rotate(0);
}
.plus:before , .plus:after {
    content: "";
    display: block;
    background-color: var(--e-global-color-e8bed32);
    position: absolute;
    top: 50%; left: 0;
    transition: .35s;
    width: 100%;
    height: 2px;
}


.plus:before {
    transform: translatey(-50%);
}

.plus:after {
    transform: translatey(-50%) rotate(90deg);
}


.collapse{
    display:grid;
    grid-template-rows:0;
    overflow:hidden;
    transition: grid-template-rows 0.3s ease;
}
.open .collapse{
    grid-template-rows:1fr;
}
.collapse > div{
    color: var(--e-global-color-secondary);
    padding-top: 12px;
    padding-bottom: 14px;
    font-family: Proximanova, Arial, sans-serif;
    font-size: 16px;
    line-height: 26px;
}
