.list-section {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto 0 auto;
    column-gap: 3%;
    box-sizing: border-box;
}

.list-section-column {
    display: flex;
    width: 48.5%;
    flex-flow: column;
    padding: 0px;
    box-sizing: border-box;
    margin: 0px;
}

@media(min-width: 1178px) {
    .list-section-column {
        width: 48.5%;
    }

    .list-section-column .list-section-item-container:first-child {
        border-top: 1px solid #BEBEBE;
    }
}

@media(max-width: 1178px) {
    .list-section-column:first-child .list-section-item-container:first-child {
        border-top: 1px solid #BEBEBE;
    }

    .list-section-column {
        width: 95%;
        margin:0 auto;
    }
}



.list-section-item-container {
    display: flex;
    width: 100%;
    flex-flow: column;
    border-bottom: 1px solid #BEBEBE;
    box-sizing: border-box;
    font-family: Rubik;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}
.list-section-item--title {
    display: flex;
    width: 100%;
    flex-flow: row nowrap;
    padding: 8px 6px;
    box-sizing: border-box;
    align-items: center;
    cursor: pointer;
}
.list-section-item-title--text {
    display: flex;
    flex: 1;
    padding: 14px 11px;
    box-sizing: border-box;
}
.list-section-item-title--button {
    display: flex;
    width: 40px;
    box-sizing: border-box;
}
.list-section-item--content {
    font-weight: 400;
    font-size: 14px;            
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.list-section-item-container.open .list-section-item--content {
    padding: 5px 10px 10px 10px;
    max-height: fit-content;
}