.accordion__btn {
    border: none;
    outline: none;
    background: none;
}

.accordion__btn {
    font-family: 'Impact';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */

    text-align: justify;

    color: #000000;
    padding-bottom: 10px;
    padding-right: 100px;
    border-bottom: #000000 solid 5px;
    position: relative;
    width: 100%;

}

.accordion__btn svg {
    position: absolute;
    top: 0;
    right: 0;
    fill: black;
}

.accordion__btn.active svg {
    transform: rotate(180deg);
}

.accordion__btn.active {
    border-bottom: 0;
}

.panel {
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion__item {
    min-width: 300px;
    margin-bottom: 20px;
    list-style: none;
	width: 100%;
}

.accordion__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    justify-content: center;
}


.panel > p {
    font-family: var(--main-font);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}