.executor-lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
    width: 100%;
}

.executor-lists .list-view {
    width: 360px;
}

.executor-item {
    display: flex;
    padding: 20px 0;
    text-align: left;
}

.executor-h {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -1px;
    margin-top: 3px;
    margin-bottom: 3px;
}

.executor-label {
    font-weight: 300;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    letter-spacing: -0.272727px;
    margin-top: 3px;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .executor-item {
        flex-wrap: wrap;
        justify-content: space-around;
        text-align: center;
    }
}