/*  accordion   */
.accordion{
    background: white;
}

.accordion-list{
    background: #FFFFFF;
    border: 1px solid rgba(57, 70, 82, 0.2);
    box-sizing: border-box;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 50px rgba(39, 87, 128, 0.15));
    margin-top: 48px;
    margin-bottom: 117px;
}
.accordion-list-item{
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #000000;
    border-bottom: 1px solid rgba(57, 70, 82, 0.2);
    box-sizing: border-box;
    padding: 24px 29px;
}
.accordion-list-item:last-child{
    border: none;
}
.accordion-list-item-question-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-list-item-question h3{
    font-weight: bold;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
}
.accordion-list-item-question-wrapper > .arrow{
    width: 40px;
    height: 40px;
}
.accordion-list-item-answer{
    font-size: 16px;
    line-height: 170%;
    color: #474749;
    margin-top: 29px;
    display: none;
}
.accordion-list-item.opened .accordion-list-item-answer{
    display: block;
}
.accordion-list-item.opened .accordion-list-item-question-wrapper > .arrow{
    transform: rotate(90deg);
}