#wto {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-items: center;
}

.colum {
    position: relative;
    width: 45%;
    margin-top: 50px;
    min-height: 400px;
    border: 1px solid #f39c12;
    padding: 15px 0;
}

.colum>.caption {
    position: absolute;
    padding: 10px 20px;
    z-index: 5;
    left: 5%;
    top: 0;
    transform: translateY(-70%);
    background-color: #f39c12;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 3px 3px 5px #999;
}

.colum>.small-caption {
    position: absolute;
    display: block;
    background-color: #e67e22;
    color: #fff;
    padding: 5px 10px;
    text-decoration: underline;
    z-index: 5;
    right: 3%;
    top: 0;
    transform: translateY(-70%);
    box-shadow: 3px 3px 5px #999;
}

.colum>.rows {
    display: flex;
    transition: .5s ease;
    padding: 10px 5px;
    color: #2c3e50;
}

.colum>.rows:nth-child(odd) {
    background-color: rgba(243, 156, 18, 0.15);
}

.colum>.rows:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #e67e22;
}

.colum>.rows>.cols {
    flex: none;
    margin-right: 10px;
}

.colum>.rows>.cols.fl-nf {
    flex: 1;;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.colum>.rows>.cols:last-child {
    margin-right: 0;
}