.custom-accordion {
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-title {
    background: transparent;
    cursor: pointer;
    font-weight: bold;
    padding: 37px 16px;
}

.accordion-content {
    max-height: 0px;
    background: white;
    overflow: hidden;
    transition: max-height 800ms ease-out, padding 0.3s ease-out;

}

.accordion-content p {
    font-family: 'avenir-next';
    font-weight: 500;
    color: #000000 !important;
    font-size: 18px;
}

/* .accordion-content.active {
    height: auto;
    opacity: 1;
    padding: 15px;
    transition: 800ms;
} */

.title-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.title-wrap .number {
    flex-basis: 0;
    flex-grow: 1;
}

.title-wrap .title {
    flex-basis: 0;
    flex-grow: 3;
    font-family: 'avenir-next';
    font-weight: 500;
    font-size: 24px;
}